.header-static {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    background: #fff;
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 0 0 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    min-height: 160px;
}

.logo-top-left {
    position: relative;
    top: 20px;
    left: 20px;
    height: 120px;
    margin-left: 20px;
    background: #fff;
    z-index: 1001;
    padding: 8px 0;
}

.nav-top-right {
    position: relative;
    top: 30px;
    right: 40px;
    display: flex;
    gap: 30px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    z-index: 1001;
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: none;
}

body {
    padding-top: 160px; /* Adjust to match header height */
}

.nav-top-right a {
    color: #646363; /* Changed to a dark grey */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

.nav-top-right a:hover {
    color: #2e8b57;
}

.main-flex {
    display: flex;
    width: 100%;
    margin-top: 40px; /* Reduced from 180px for the first row, and for subsequent rows use only a small gap */
    font-family: Arial, sans-serif;
    min-height: 400px;
    height: 500px;
    max-height: 60vh;
}


.main-flex:first-of-type {
    margin-top: 180px; /* Keep large top margin only for the first row */
}


.main-flex.portrait-row {
    min-height: 800px;
    height: 800px;
    max-height: none;
}

.main-flex-img, .main-flex-content {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.main-flex-img {
    flex: 1 1 55%;
    padding: 0;
    overflow: hidden; /* Hide overflow for cropping effect */
    display: flex;
}

.main-flex-img img {
    width: 100%;
    height: 100%;
    min-width: 500px; /* Prevents shrinking below a certain width */
    min-height: 100%;
    object-fit: cover; /* Crop and zoom as needed */
    object-position: center;
    display: block;
}

.main-flex-img-full {
    flex: 1 1 55%;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 600px;
    height: 800px;
}

.main-flex-img-full img {
    width: auto;
    height: 100%;
    object-fit: contain;
    display: block;
    max-height: none;
    min-height: 0;
    margin: 0 auto;
}

.main-flex-content {
    flex: 1 1 45%;
    background: #f79336;
    color: #fff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.main-flex-content.teal-bg {
    background: #0097a7;
}

.main-flex-content.gray-bg {
    background: #c4c3c3;
}

.main-flex-content h1 {
    font-size: 36px;
    margin: 0 0 30px 0;
    font-family: 'Arial Black', Arial, sans-serif;
    line-height: 1.1;
}

.main-flex-content p {
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
    font-family: Arial, sans-serif;
}


.what-you-get-title {
    color: #0097a7;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 40px;
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-align: center;
}

.what-you-get-gallery {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.what-you-get-item {
    background: #f79336;
    color: #222;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.what-you-get-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.what-you-get-caption {
    padding: 30px 20px 30px 20px;
    color: #222;
    font-family: Arial, sans-serif;
    background: #f79336;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.what-you-get-caption h3 {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 22px;
    margin: 0 0 18px 0;
    letter-spacing: 1px;
}

.what-you-get-caption p {
    font-size: 17px;
    margin: 0;
    line-height: 1.5;
}

.benefits-list {
    color: #0097a7;
    font-size: 22px;
    font-family: Arial, sans-serif;
    margin: 10px 0;
    /* font-weight: bold; */
}

.about-us-section {
    background: #0097a7;
    color: #fff;
    padding: 60px 0 80px 0;
    width: 100%;
    margin-top: 60px;
}

.about-us-title {
    text-align: center;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 38px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.about-us-description {
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.7;
    font-family: Arial, sans-serif;
}

.about-us-team {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.about-us-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 220px;
}

.about-us-member img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
    margin-bottom: 18px;
    background: #fff;
}

.about-us-name {
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 8px;
}

.contact-us-section {
    background: #fff;
    color: #222;
    padding: 60px 0 80px 0;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-us-title {
    color: #0097a7;
    font-family: 'Arial Black', Arial, sans-serif;
    font-size: 38px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-align: left;
    width: 90%;
    max-width: 400px;
}

.contact-us-content {
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    width: 90%;
    max-width: 400px;
}

@media (max-width: 600px) {
    .main-flex {
        flex-direction: column;
        height: auto;
        max-height: none;
    }
    .main-flex-img, .main-flex-content {
        min-width: 0;
    }
    .main-flex-img {
        height: 250px;
    }
    .main-flex-img img {
        min-width: 0;
        min-height: 0;
    }
}

@media (max-width: 800px) {
    .what-you-get-gallery {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .what-you-get-item {
        width: 90vw;
        max-width: 400px;
    }
}

@media (max-width: 900px) {
    .about-us-team {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
}