@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Asap:400,400i,500,500i,700,700i);
@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,300i,400,400i,500,500i,700,700i);

body {
    margin: 0;
    font-family: 'Ubuntu', sans-serif;
}

/* Header and Footer */
#header, #footer {
    width: 100%;
}

/* Image Section */
.image-container {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Main Content */
.content {
    display: flex;
    padding: 2% 5%;
}

.left-content {
    width: 75%;
    padding-right: 5%;
}

.left-content h2{
    font-size: 30px;
}

.left-content p {
    font-size: 15px;
    line-height: 20px;
    color: gray;
    text-align: justify;
}

.right-box {
    width: 25%;
    height: 100%;
    background: white;
    padding: 6px;
    box-shadow: 0px 0px 10px 5px rgba(211, 211, 211, 0.5);
}

.right-box h2 {
    text-align: center;
    background: #8F654F;
    color: white;
    padding: 16px;
    margin: 0;
}

.button-container {
    display: flex;
    flex-direction: column;
}

.button-container a {
    text-decoration: none; /* Removes default link underline */
    display: block; /* Makes the entire button clickable */
    border-bottom: 1px solid #d1ccc7; /* Light gray border at the bottom */
}

.button-container button {
    padding: 10px 15px;
    background: #EAE5DF;
    color: #8F654F;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: left;
    width: 100%;
}

.button-container button:last-child {
    border-bottom: none; /* Remove border from the last button */
}


.button-container button:hover {
    color: black;
}

.button-container button.active {
    color: white;
    background: black;
}

@media screen and (max-width: 1024px) {
    .right-box{
        width: 30%;
    }
}

@media screen and (max-width: 768px) {
    .right-box h2 {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px){
    .content{
        flex-direction: column;
    }

    .left-content{
        width: 100%;
        padding: 0%;
    }

    .right-box{
        width: 100%;
        margin: 8% 0;
    }
}