body {
    font-family: Arial, sans-serif;
    background-color: #EDEDE9;
}

.navbar {
    background-color: #D5BDAF;
    z-index: 1020;
    position: relative;
}

.hero-image-left {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.hero-right-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.social-links img {
    margin: 0 10px;
    width: 30px;
}

@media (max-width: 992px) {
    .hero-image-left {
        height: 200px;
    }
}

h2 {
    background-color: #D5BDAF;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

.bg-color-1 {
    background-color: #E3D5CA;
}

.bg-color-2 {
    background-color: #F5EBE0;
}

table {
    color: #333333;
    background-color: #D6CCC2;
}

th {
    background-color: #E3D5CA;
    color: white;
}

td {
    color: #333333;
}

.card-deck .card {
    display: flex;
    flex-direction: column;
}

.card-body {
    flex-grow: 1;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #D5BDAF;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
}

#myBtn:hover {
    background-color: #E3D5CA;
}

footer {
    background-color: #D5BDAF;
    color: #EDEDE9;
    padding: 20px 0;
}

footer .social-icon {
    margin: 0 10px;
    color: #E3D5CA;
    font-size: 24px;
}

footer .social-icon:hover {
    color: #F5EBE0;
}

footer a {
    color: #E3D5CA;
}

footer a:hover {
    color: #F5EBE0;
    text-decoration: none;
}

.footer-content {
    background-color: #E3D5CA;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    footer .footer-content {
        margin-bottom: 10px;
    }
}