body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f8f8f8;
    color: #1a2b1f;
}


/* NAVBAR */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 32px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(13, 43, 33, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar.navbar-transparent {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: none;
    transition: background 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(6px);
}

.navbar-logo img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #0d2b21;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #e2b649;
    background-color: #0d2b21;
    border: 2px solid #e2b649;
    padding: 4px 8px;
    border-radius: 5px;
    padding-inline: 12px;
}

.nav-account-dropdown {
    position: relative;
    display: inline-block;
}

.nav-account-dropdown>a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.account-dropdown-menu {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 120px;
    background: #fff;
    box-shadow: 0 4px 16px #0d2b2122;
    border-radius: 8px;
    z-index: 100;
    flex-direction: column;
    padding: 8px 0;
}

.account-dropdown-menu a {
    color: #0d2b21;
    padding: 10px 18px;
    text-decoration: none;
    display: block;
    font-size: 1rem;
    border-radius: 6px;
    transition: background 0.18s, color 0.18s;
}

.account-dropdown-menu a:hover {
    background: #e2b64922;
    color: #c1a149;
}

.nav-account-dropdown.open .account-dropdown-menu {
    display: flex;
}

.nav-account-dropdown .material-icons {
    font-size: 1.2em;
    transition: transform 0.2s;
}

.nav-account-dropdown.open .material-icons {
    transform: rotate(180deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 32px;
    height: 32px;
    justify-content: center;
    gap: 6px;
}

.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #0d2b21;
    border-radius: 2px;
    transition: 0.3s;
}


/* HERO SECTION */

.main {
    max-width: 100%;
}

.hero-overlap {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    background: #0d2b21;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    display: block;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 48px 5vw;
    box-sizing: border-box;
    text-align: center;
    background: rgba(13, 43, 33, 0.25);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-right: auto;
    margin-bottom: 18px;
    line-height: 1.1;
    letter-spacing: 2px;
}

.hero-actions {
    font-size: 1.3rem;
    margin-right: auto;
    color: #e2b649;
    margin-bottom: 18px;
    letter-spacing: 4px;
    font-weight: 600;
}

.hero-actions .highlight {
    color: #e2b649;
    margin-right: auto;
    margin: 0 6px;
}

.hero-actions span {
    color: #fff;
    margin: 0 4px;
    font-weight: 700;
}

.hero-desc {
    background: #c1a149;
    border-radius: 24px;
    padding: 14px 32px;
    margin-right: auto;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(34, 34, 34, 0.08);
    max-width: 500px;
}

.hero-cta {
    background: transparent;
    border: solid 2px #c1a149;
    border-radius: 24px;
    padding: 14px 32px;
    text-decoration: none;
    margin-right: auto;
    margin-bottom: 24px;
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(34, 34, 34, 0.08);
    max-width: 500px;
}

.hero-cta:hover {
    background: #c1a149;
    color: #0d2b21;
    transition: background 0.3s, color 0.3s;
}

.hero-logo img {
    width: 100px;
    height: auto;
    margin-top: 20px;
}

.market-updates {
    background: #fff;
    color: #0d2b21;
    border-radius: 30px;
    padding: 10px 18px;
    margin-top: 8px;
    box-shadow: 0 2px 8px rgba(13, 43, 33, 0.06);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    z-index:99999;
    gap: 12px;
    font-size: 1rem;
    max-width: 95vw;
}

.updates-label {
    background: #16311f;
    color: #fff;
    border-radius: 18px;
    
    padding: 4px 14px;
    font-size: 0.95rem;
    margin-right: 10px;
    font-weight: 500;
}

.updates-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.update {
    font-size: 0.98rem;
    font-weight: 500;
    margin-right: 8px;
}

.update .pos {
    color: #16a34a;
    font-weight: 700;
}

.update .neg {
    color: #dc2626;
    font-weight: 700;
}


/* VISION & MISSION */

.vision,
.mission {
    width: 90%;
    height: fit-content;
    border: 2px solid #16311f;
    align-self: center;
    justify-items: center;
    border-radius: 4px;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    padding: 4px;
    word-spacing: 3px;
}

.vision .word,
.mission .word {
    background: #16311f;
    border-radius: 24px;
    padding: 14px 32px;
    margin-bottom: 24px;
    color: #c1a149;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(34, 34, 34, 0.08);
    max-width: 700px;
}

.vision .trans,
.mission .trans {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 400px;
    width: 100%;
}

.vision .block,
.mission .block {
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 30px;
}

.vision .block img,
.mission .block img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.vision .transform,
.mission .transform {
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 0;
    background: #f8f8f8;
    border-radius: 0 18px 18px 0;
    padding: 32px 28px;
    box-shadow: 0 2px 16px #e2b64922;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision .transform p,
.mission .transform p {
    font-size: 1.18rem;
    color: #0d2b21;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.2px;
}




/* FEATURES */

.features {
    width: 100%;
    background: linear-gradient(120deg, #f8f8f8 60%, #e2b64922 100%);
    padding: 64px 0 48px 0;
    box-sizing: border-box;
}

.features-header {
    text-align: center;
    margin-bottom: 40px;
}

.features-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0d2b21;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.features-header p {
    font-size: 1.15rem;
    color: #0d2b21;
    margin: 0 auto;
    max-width: 540px;
    font-weight: 500;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2vw;
}

.feature-item {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 32px #0d2b21, 0 1.5px 8px #0d2b2111;
    padding: 38px 28px 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.22s cubic-bezier(.4, 2, .6, 1), box-shadow 0.22s;
    position: relative;
    overflow: hidden;
    min-height: 340px;
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.035);
    box-shadow: 0 8px 48px #e2b64944, 0 2px 12px #0d2b2122;
}

.feature-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    background: #fffbe7;
    box-shadow: 0 2px 12px #e2b64933;
    margin-bottom: 24px;
    border: 3px solid #e2b64944;
    transition: box-shadow 0.22s;
}

.feature-item:hover img {
    box-shadow: 0 4px 24px #e2b64966;
    border-color: #e2b649;
}

.feature-item h3 {
    font-size: 1.35rem;
    color: #c1a149;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-align: center;
}

.feature-item p {
    font-size: 1.08rem;
    color: #0d2b21;
    text-align: center;
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
}


/* GOAL */

.goal {
    width: 100%;
    background: linear-gradient(120deg, #f8f8f8 60%, #e2b64922 100%);
    padding: 64px 0 48px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.goal-card {
    position: relative;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 8px 48px #e2b64933, 0 2px 12px #0d2b2111;
    max-width: 900px;
    width: 90vw;
    min-height: 340px;
    padding: 48px 38px 38px 38px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.goal-ellipse {
    position: absolute;
    border-radius: 50%;
    opacity: 0.13;
    z-index: 1;
    pointer-events: none;
}

.goal-ellipse-1 {
    width: 220px;
    height: 220px;
    background: #e2b649;
    top: -60px;
    left: -80px;
}

.goal-ellipse-2 {
    width: 160px;
    height: 160px;
    background: #c1a149;
    bottom: -40px;
    right: -60px;
}

.goal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.goal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin-bottom: 24px;
}

.goal-label,
.goal-value {
    background: #e2b649;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 8px 28px;
    border-radius: 22px;
    box-shadow: 0 2px 8px #e2b64933;
    letter-spacing: 1px;
}

.goal-value {
    background: #c1a149;
}

.goal-main {
    margin-bottom: 22px;
    width: 100%;
}

.goal-main-text {
    font-size: 1.25rem;
    color: #0d2b21;
    font-weight: 600;
    line-height: 1.7;
    text-align: center;
    margin: 0;
    letter-spacing: 0.2px;
}

.goal-sub {
    width: 100%;
}

.goal-sub-text {
    font-size: 1.05rem;
    color: #fff;
    font-weight: 500;
    text-align: center;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.1px;
    background: #0d2b21;
    border-radius: 16px;
    padding: 16px 12px;
    margin-top: 10px;
}


/* ABOUT US */

.about-us {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.about-us-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/generate.png') center center/cover no-repeat;
    z-index: 1;
}

.about-us-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 43, 33, 0.60);
    z-index: 2;
}

.about-us-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    margin: 0 auto;
    padding: 48px 32px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-us h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.about-us-summary {
    font-size: 1.18rem;
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.6;
}

.about-us-btn {
    background: linear-gradient(90deg, #e2b649 60%, #c1a149 100%);
    color: #0d2b21;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 12px 32px;
    border: none;
    border-radius: 24px;
    margin-bottom: 18px;
    margin-top: 6px;
    cursor: pointer;
    box-shadow: 0 2px 8px #e2b64933;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.about-us-btn:hover,
.about-us-btn:focus {
    background: linear-gradient(90deg, #c1a149 60%, #e2b649 100%);
    color: #fff;
    box-shadow: 0 4px 16px #e2b64955;
    outline: none;
}

.about-us-more {
    display: none;
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    padding: 18px 12px;
    font-size: 1.08rem;
    color: #fff;
    text-align: left;
    line-height: 1.7;
    box-shadow: 0 2px 12px #0d2b2122;
}

.about-us-more.show {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* TEAM */

.team {
    background: linear-gradient(120deg, #f8f8f8 60%, #e2b64922 100%);
    padding: 64px 0 48px 0;
    text-align: center;
}

.team-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0d2b21;
    margin-bottom: 8px;
}

.team-header p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 32px;
}

.team-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto 24px auto;
    transition: max-height 0.4s cubic-bezier(.4, 2, .6, 1);
    overflow: hidden;
}

.team-member {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 32px #e2b64922, 0 1.5px 8px #0d2b2111;
    padding: 32px 24px 24px 24px;
    width: 270px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.22s, box-shadow 0.22s;
    position: relative;
}

.team-member img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    border: 4px solid #e2b64944;
    box-shadow: 0 2px 12px #e2b64933;
    background: #fffbe7;
}

.team-member h3 {
    font-size: 1.15rem;
    color: #c1a149;
    font-weight: 700;
    margin-bottom: 6px;
}

.team-member p {
    font-size: 1rem;
    color: #222;
    margin: 0;
    font-weight: 500;
}

.team-expand-btn {
    background: linear-gradient(90deg, #e2b649 60%, #c1a149 100%);
    color: #0d2b21;
    font-size: 1.08rem;
    font-weight: 700;
    padding: 12px 32px;
    border: none;
    border-radius: 24px;
    margin-top: 10px;
    cursor: pointer;
    box-shadow: 0 2px 8px #e2b64933;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.team-expand-btn:hover,
.team-expand-btn:focus {
    background: linear-gradient(90deg, #c1a149 60%, #e2b649 100%);
    color: #fff;
    box-shadow: 0 4px 16px #e2b64955;
    outline: none;
}

.team-list:not(.expanded) .team-member:nth-child(n+4) {
    display: none;
}


/* FOOTER */

.footer {
    position: relative;
    background: #0d2b21;
    color: #fff;
    padding: 0;
    margin-top: 48px;
    overflow: hidden;
    font-family: 'Montserrat', Arial, sans-serif;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    display: block;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    max-width: 100%;
    margin: 0 auto;
    padding: 56px 32px 24px 32px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-desc {
    font-size: 1rem;
    color: #eaeaea;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-terms {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.footer-terms a {
    color: #c1a149;
    text-decoration: none;
    font-size: 0.98rem;
    transition: color 0.2s;
}

.footer-terms a:hover {
    color: #e2b649;
}

.footer-col.links ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-col.links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-col.links ul li a:hover {
    color: #e2b649;
}

.footer-col-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 2px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.footer-social {
    display: flex;
    color: #e2b649;
    gap: 30px;
    margin-top: 10px;
}

.footer-social img {
    width: 35px;
    height: 35px;
    color: #e2b649;
    filter: grayscale(0.5) brightness(1);
    transition: filter 0.4s, transform 0.2s;
}

.footer-social img:hover {
    filter: none;
    transform: scale(1.15) rotate(-8deg);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    color: #e2b649;
    gap: 10px;
    font-size: 1rem;
    margin-bottom: 6px;
}

.footer-contact-item img {
    width: 22px;
    height: 22px;
    filter: brightness(1.5);
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-address img {
    width: 22px;
    height: 22px;
    margin-top: 2px;
    filter: brightness(1.5);
}

.footer-newsletter {
    display: flex;
    gap: 0;
    margin-bottom: 8px;
}

.footer-newsletter input[type="email"] {
    padding: 8px 14px;
    border: none;
    border-radius: 18px 0 0 18px;
    font-size: 1rem;
    outline: none;
    background: #fff;
    color: #0d2b21;
    width: 60%;
}

.footer-newsletter button {
    padding: 8px 18px;
    border: none;
    border-radius: 0 18px 18px 0;
    background: #e2b649;
    color: #0d2b21;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.footer-newsletter button:hover {
    background: #c1a149;
    color: #fff;
}

.footer-newsletter-label {
    font-size: 0.98rem;
    color: #e2b649;
    font-weight: 600;
    margin-left: 2px;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 18px 0 10px 0;
    color: #e2b649;
    font-size: 1rem;
    border-top: 1px solid #e2b64933;
    background: transparent;
    margin-top: 12px;
}


/* PROBLEM SECTION */

.problem {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.problem-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.problem-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 420px;
    filter: brightness(0.7);
}

.problem-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 43, 33, 0.65);
    z-index: 2;
}

.problem-btn-box {
    position: relative;
    z-index: 3;
    display: flex;
    gap: 32px;
    margin: 0 auto;
    top: 120px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 2px 16px #0d2b2133;
    padding: 24px 36px;
}

.problem-tab-btn {
    background: linear-gradient(90deg, #e2b649 60%, #c1a149 100%);
    color: #0d2b21;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 16px 38px;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    box-shadow: 0 2px 8px #e2b64933;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    letter-spacing: 1px;
}

.problem-tab-btn:hover,
.problem-tab-btn:focus {
    background: linear-gradient(90deg, #c1a149 60%, #e2b649 100%);
    color: #fff;
    box-shadow: 0 4px 16px #e2b64955;
    outline: none;
}

.problem-modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(13, 43, 33, 0.85);
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.problem-modal.active {
    display: flex;
    animation: fadeIn 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.problem-modal-content {
    background: #fff;
    color: #0d2b21;
    border-radius: 22px;
    max-width: 600px;
    width: 90vw;
    padding: 38px 28px 28px 28px;
    box-shadow: 0 8px 48px #e2b64933, 0 2px 12px #0d2b2111;
    position: relative;
    text-align: left;
    font-size: 1.08rem;
    line-height: 1.7;
}

.close-modal-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: #e2b649;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 2px 8px #e2b64933;
    transition: background 0.2s;
}

.close-modal-btn:hover {
    background: #c1a149;
}


/* RESPONSIVE STYLES */

@media (max-width: 1000px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 36px 10vw 18px 10vw;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #0d2b21;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;
        z-index: 100;
        gap: 18px;
    }
    .nav-links.open {
        display: flex;
    }
    .navbar-logo img {
        height: 40px;
    }
    .nav-account-dropdown {
        position: relative;
    }
    .account-dropdown-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        border-radius: 0;
        min-width: 0;
        padding: 0;
    }
    .nav-account-dropdown.open .account-dropdown-menu {
        display: flex;
        flex-direction: column;
    }
    .features-list {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .feature-item {
        min-height: 280px;
        padding: 28px 16px 24px 16px;
    }
    .goal-card {
        padding: 32px 10px 24px 10px;
        max-width: 98vw;
    }
    .goal-header {
        gap: 12px;
    }
    .goal-main-text {
        font-size: 1.08rem;
    }
    .goal-sub-text {
        font-size: 0.98rem;
        padding: 12px 6px;
    }
    .goal-ellipse-1 {
        width: 120px;
        height: 120px;
        top: -30px;
        left: -40px;
    }
    .goal-ellipse-2 {
        width: 90px;
        height: 90px;
        bottom: -20px;
        right: -30px;
    }
    .about-us-content {
        padding: 32px 8vw;
        max-width: 98vw;
    }
    .about-us h2 {
        font-size: 1.5rem;
    }
    .vision{
        margin-top:25px;
    }
    .about-us-summary,
    .about-us-more {
        font-size: 1rem;
    }
    .team-list {
        gap: 18px;
    }
    .team-member {
        width: 90vw;
        min-width: 0;
        padding: 22px 8vw 18px 8vw;
    }
    .vision .trans,
    .mission .trans {
        flex-direction: column;
        gap: 28px;
        min-height: unset;
    }
    .vision .block,
    .mission .block,
    .vision .transform,
    .mission .transform {
        max-width: 100vw;
        flex: 1 1 100%;
        border-radius: 18px;
    }
    .vision .block img,
    .mission .block img {
        max-width: 100%;
        border-radius: 18px 18px 0 0;
        min-height: 180px;
        height: 220px;
    }
    .vision .transform,
    .mission .transform {
        border-radius: 0 0 18px 18px;
        padding: 22px 10px;
    }
    .hero-overlap {
        min-height: 340px;
    }
    .hero-bg img {
        position: static;
        width: 100vw;
        max-width: 100vw;
        min-width: 180px;
        height: 220px;
        object-fit: cover;
        margin-bottom: 0;
        opacity: 0.85;
    }
    .hero-content {
        padding: 32px 4vw;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .hero-desc {
        font-size: 1rem;
        padding: 10px 16px;
        max-width: 90vw;
    }
}

@media (max-width: 700px) {
    .navbar {
        padding: 10px 14px;
    }
    .nav-links {
        position: absolute;
        top: 60px;
        right: 14px;
        background: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 2px 8px #e2b64955;
        border-radius: 8px;
        overflow: hidden;
        display: none;
        min-width: 160px;
        z-index: 1000;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        color: #0d2b21;
        padding: 14px 24px;
        border-bottom: 1px solid #eee;
        font-size: 1.1rem;
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
    .vision{
        margin-top:20px;
    }
    .hamburger {
        display: flex;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 24px 4vw 10px 4vw;
    }
    .footer-col {
        gap: 10px;
    }
    .problem-btn-box {
        flex-direction: column;
        gap: 16px;
        padding: 16px 10vw;
        top: 60px;
    }
    .problem-modal-content {
        padding: 18px 6vw 18px 6vw;
        font-size: 0.98rem;
    }
}

@media (max-width: 600px) {
    .features {
        padding: 36px 0 24px 0;
    }
    .features-header h2 {
        font-size: 1.5rem;
    }
    .features-list {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 2vw;
    }
    .feature-item {
        min-height: 180px;
        padding: 18px 8px 16px 8px;
    }
    .feature-item img {
        width: 60px;
        height: 60px;
        margin-bottom: 14px;
    }
    .feature-item h3 {
        font-size: 1.08rem;
        margin-bottom: 8px;
    }
    .feature-item p {
        font-size: 0.98rem;
    }
    .goal {
        padding: 24px 0 16px 0;
    }
    .goal-card {
        padding: 18px 2vw 14px 2vw;
        border-radius: 18px;
    }
    .goal-header {
        flex-direction: column;
        gap: 6px;
        margin-bottom: 12px;
    }
    .goal-label,
    .goal-value {
        font-size: 1rem;
        padding: 7px 16px;
        border-radius: 14px;
    }
    .goal-main-text {
        font-size: 0.98rem;
    }
    .goal-sub-text {
        font-size: 0.93rem;
        padding: 8px 2vw;
    }
    .about-us-content {
        padding: 18px 2vw;
    }
    .about-us h2 {
        font-size: 1.1rem;
    }
    .about-us-btn {
        font-size: 0.98rem;
        padding: 10px 18px;
    }
    .about-us-more {
        padding: 10px 4vw;
        font-size: 0.95rem;
    }
    .vision{
        margin-top:25px;
    }
    .team {
        padding: 36px 0 24px 0;
    }
    .team-header h2 {
        font-size: 1.3rem;
    }
    .team-member {
        padding: 14px 2vw 12px 2vw;
    }
    .team-member img {
        width: 64px;
        height: 64px;
    }
    .vision,
    .mission {
        padding: 24px 0 16px 0;
    }
    .vision .text-wrapper-11,
    .mission .text-wrapper-11 {
        font-size: 1.2rem;
    }
    .vision .block img,
    .mission .block img {
        max-width: 100vw;
        min-height: 120px;
        height: 160px;
    }
    .vision .transform,
    .mission .transform {
        padding: 12px 4vw;
        font-size: 1rem;
    }
    .hero-content {
        padding: 18px 2vw;
    }
    .hero-title {
        font-size: 1.3rem;
    }
    .hero-actions {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    .market-updates {
        font-size: 0.92rem;
        padding: 7px 6px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    .updates-list {
        gap: 8px;
    }
}