body {
    background-color: whitesmoke;
    margin: 0;
    padding: 0;
}
#sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
    padding-bottom: 20px;
}
/* Update the content-wrapper layout */
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.image-container {
    width: 25%;
    height: 30vh;
    padding: 20px;
    box-sizing: border-box;
}

/* Add media queries for smaller screens */
@media screen and (max-width: 768px) {
    .image-container {
        width: 100%;
        height: 20vh;
        padding: 10px;
    }
    
    .text-container {
        width: 100%;
        padding: 20px;
        padding-right: 20px;
    }
    
    .site-title {
        font-size: 3em;
        text-align: center;
    }
    
    .site-subtitle {
        text-align: center;
    }
    
    .main-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .info-box {
        flex-direction: column;
    }
    
    .info-column {
        margin-bottom: 20px;
    }
}

/* Add specific adjustments for mobile */
@media screen and (max-width: 480px) {
    .site-title {
        font-size: 2.5em;
    }
    
    .info-value {
        font-size: 1.8em !important;
    }
}
.site-image {
    /* border: 1px solid red; */
    /* width: 100%; */
    height: 100%;
    object-fit: contain;
    float: right;
}
.text-container {
    width: 75%;
    padding: 20px;
    padding-left: 0px;
    padding-right: 150px;
    box-sizing: border-box;
}
.site-title {
    font-size: 5.5em;
    margin-bottom: 0px;
}
.site-subtitle {
    font-size: 1.2em;
    color: #666;
}
.main-content {
    width: 100%;
    padding-top: 20px;
    padding-left: 100px;
    padding-right: 100px;
    box-sizing: border-box;
}
.info-box {
    background-color: #e8e6e6;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
}
.info-column {
    flex: 1;
    text-align: center;
}
.info-title {
    font-size: 0.9em;
    margin-bottom: 5px;
}
.info-value {
    font-size: 2em;
    color: #4CAF50;
    font-weight: bold;
    margin: 10px 0;
}
.info-subtitle {
    font-size: 0.8em;
}
.green-text {
    color: #4CAF50;
}
.dropdown {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    overflow: hidden;
}
.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
}
.dropdown-title {
    font-weight: bold;
}
.dropdown-arrow {
    transition: transform 0.2s ease;
    color: grey;
}
.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}
.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}
.dropdown.active .dropdown-content {
    max-height: 500px; /* Adjust as needed */
    padding: 15px;
}

@media screen and (max-width: 768px) {
    .content-wrapper {
        display: flex;
        align-items: flex-start; /* Changed from center to flex-start */
        padding: 10px;
    }
    
    .image-container {
        width: 30%;
        height: auto;
        padding: 10px;
        align-items: flex-start; /* Changed from center to flex-start */

    }
    
    .site-image {
        width: 100%;
        height: auto;
    }
    
    .text-container {
        width: 70%;
        padding: 10px;
        justify-content: flex-start; /* Changed to flex-start */
        padding-top: 10px; /* Added to match image container padding */
    }
    
    .site-title {
        font-size: 3.2em; /* Increased from 2.5em */
        margin: 0;
        text-align: left; /* Ensure left alignment */
        line-height: 1; /* Tighten line height */
    }
    
    .site-subtitle {
        font-size: 1em;
        width: 100%;
        margin-top: 5px;
        text-align: left; /* Ensure left alignment */
    }

    .main-content {
        padding: 10px;
        width: 100%;
    }
    
    .info-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px; /* Reduced from 15px to 5px */
        width: 100%;
        aspect-ratio: 1;
        padding: 15px;
        margin: 0;
    }
    
    .info-column {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 10px;
    }
    
    .info-value {
        font-size: 2em !important;
    }
    
    .dropdown {
        width: 100%;
        margin: 10px 0;
    }
    
    .dropdown-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0; /* Remove default padding */
        margin: 0; /* Remove any margin */
    }
    
    .dropdown.active .dropdown-content {
        max-height: 2000px; /* Increased to accommodate more content */
        padding: 15px; /* Add padding only when active */
    }
    
    /* Ensure text is completely hidden when collapsed */
    .dropdown:not(.active) .dropdown-content {
        padding: 0;
        visibility: hidden;
    }
}

/* Additional adjustments for very small screens */
@media screen and (max-width: 480px) {
    .site-title {
        font-size: 2em;
    }
    
    .site-subtitle {
        font-size: 0.9em;
    }
    
    .info-value {
        font-size: 1.8em !important;
    }
}