* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffff;
}

.main-wrapper {
    width: 95%;
    max-width: 95%;
    margin: 20px auto;
    background: none;
    border-radius: 25px;
    overflow: visible;
    color: #fff;
}

.navbar {
    position: relative;
    top: 0;
    left: auto;
    transform: none;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #166647;
    border-radius: 48px;
    height: auto;
    min-height: 138px;
    z-index: 100;
}

.navbar-header {
    display: flex;
    align-items: center;
}

.navbar .logo {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 0px 0px rgba(255, 255, 255, 0);
    padding: 7px 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 137px;
    height: 64px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 20px;
}

.navbar .logo img {
    display: block;
    height: 45px;
    width: 93px;
    max-width: 100%;
}

.navbar .logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.navbar .logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
}

.nav-wrapper {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.1), inset 0 0 0px 0px rgba(255, 255, 255, 0);
    padding: 12px;
    border-radius: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: auto;
    max-width: 850px;
    height: 64px;
    gap: 8px;
    position: static;
    left: auto;
    transform: none;
    overflow: visible;
    flex-grow: 1;
    margin: 0 20px;
    z-index: 100;
}

.nav-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.nav-wrapper::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
}

.nav-links {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    justify-content: center;
    flex-grow: 1;
    transition: all 0.4s ease-in-out;
}

.nav-links .mobile-btn {
    display: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 16px 8px;
    border-radius: 20px;
    opacity: 0.7;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: auto;
    min-width: 90px;
    height: 40px;
    flex-shrink: 0;
    white-space: nowrap;
    border: 1px solid transparent;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    opacity: 1;
    width: auto;
    min-width: 90px;
    height: 40px;
    padding: 16px 8px;
}

.nav-btn {
    background: #1C7F56;
    color: white;
    height: 64px;
    width: 271px;
    flex-shrink: 0;
    padding: 0 68px 0 24px;
    border-radius: 32px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    gap: 8px;
}

.nav-btn .arrow-icon {
    background: white;
    color: #1C7F56;
    width: 56px;
    height: 56px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-btn:hover {
    background: #166c41;
}

.hamburger-menu {
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 5px;
    z-index: 1000;
    display: none;
    align-self: center;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

@media screen and (min-width: 1025px) and (max-width: 1440px) {
    .navbar {
        padding: 15px 15px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .navbar .logo {
        margin-right: 5px;
        width: 110px;
        padding: 5px 10px;
    }

    .navbar .logo img {
        width: 70px;
        height: auto;
    }

    .nav-wrapper {
        margin: 0 5px;
        padding: 8px;
        gap: 0;
        max-width: none;
        flex-grow: 1;
        width: auto;
        justify-content: center;
    }

    .nav-links {
        gap: 5px;
        width: 100%;
        justify-content: space-evenly;
    }

    .nav-links a,
    .nav-links a.active {
        font-size: 13px;
        min-width: auto;
        padding: 10px 10px;
        height: 35px;
    }
}

@media (max-width: 1024px) {
    .navbar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar {
        flex-direction: column;
        gap: 0;
        padding: 15px 20px;
        min-height: auto;
    }

    .nav-wrapper {
        max-width: 100%;
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-links .mobile-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        opacity: 0.7;
        height: 50px;
        width: 100%;
        padding: 0 8px;
        border-radius: 20px;
        text-decoration: none;
        position: relative;
        font-weight: normal;
    }

    .nav-links .mobile-btn:hover {
        opacity: 0.9;
        background: rgba(255, 255, 255, 0.1);
    }

    .navbar .logo {
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .desktop-only {
        display: none;
    }

    .nav-wrapper::before,
    .nav-wrapper::after {
        display: none;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        position: static;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        padding: 5px;
        z-index: 1001;
        margin-top: 0;
        margin-bottom: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        padding: 0;
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 20px;
        transition: all 0.4s ease-in-out;
    }

    .nav-links.open {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
        padding: 12px;
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .nav-links a {
        flex-grow: 1;
        justify-content: center;
        gap: 10px;
        min-width: unset;
        width: 100%;
    }

    .nav-links a.active {
        width: 100%;
        height: 50px;
        font-size: 16px;
        padding: 10px 8px;
        text-align: center;
        margin-bottom: 5px;
    }

    .hamburger-menu.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger-menu.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

.dropdown-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(22, 102, 71, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 10px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 9999;
}

.dropdown-container:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.dropdown-menu a {
    color: #fff;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 12px;
    transition: background 0.3s ease;
    text-align: center;
    font-size: 15px;
    display: block;
    width: 100%;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 1024px) {
    .dropdown-container {
        flex-direction: column;
        width: 100%;
        height: auto;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        box-shadow: none;
        border: none;
        backdrop-filter: none;
        padding: 0;
        min-width: 100%;
        display: none;
    }

    .dropdown-container:hover .dropdown-menu {
        display: flex;
        transform: none;
    }

    .dropdown-menu a {
        font-size: 14px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 5px;
    }
}

.intro-section {
    font-family: 'Poppins', sans-serif;
    width: 90%;
    height: auto;
    margin: 100px auto;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    background: #E5FAEA;
    color: #1C7F56;
    padding: 12px 24px;
    border-radius: 32px;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.section-label::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background-color: #1C7F56;
    border-radius: 50%;
    margin-right: 10px;
}

.service-title {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.message-news {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    color: #777777;
}

@media (max-width: 1024px) {
    .intro-section {
        margin: 60px auto;
    }

    .service-title {
        font-size: 44px;
        margin-bottom: 25px;
    }

    .message-news {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .service-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .section-label {
        padding: 10px 20px;
        font-size: 14px;
        margin-bottom: 15px;
    }

    .message-news {
        font-size: 16px;
    }
}

:root {
    --green: #1C7F56;
    --light-bg: #F0FAF5;
    --text-color: #333;
    --light-text: #666;
}

.section {
    padding: 60px 5%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.section-header p {
    font-size: 20px;
    color: var(--light-text);
    font-family: 'Poppins', sans-serif;
}

.what-you-get {
    background-color: #EFFAF4;
    padding-bottom: 80px;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 250px;
    text-align: left;
    transition: transform 0.3s;
    font-family: 'Poppins', sans-serif;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 56px;
    height: 56px;
    background-color: #1C7F56;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-circle svg {
    fill: #fff;
    width: 40px;
    height: 40px;
}

.benefit-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}

.benefit-card p {
    font-size: 18px;
    color: var(--light-text);
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

.application-process {
    padding-top: 80px;
    max-width: 90%;
    place-self: center;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 50px auto 0;
    gap: 20px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 180px;
}

.step-number {
    width: 56px;
    height: 56px;
    background-color: #1C7F56;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.step-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    min-width: 250px;
    text-align: center;
    transition: transform 0.3s;
    height: 250px;
    font-family: 'Poppins', sans-serif;
}

.step-item h4 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    color: #1C7F56;
    font-family: 'Poppins', sans-serif;
}

.step-item p {
    font-size: 18px;
    color: var(--light-text);
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.arrow {
    margin: 0 10px;
    align-self: flex-start;
    margin-top: 150px;
    flex-shrink: 0;
    display: block;
}

.arrow svg {
    width: 80px;
    height: 80px;
    fill: #1C7F56;
}

@media (max-width: 1024px) {
    .section {
        padding: 40px 5%;
    }
    
    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 18px;
    }

    .benefits-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .benefit-card {
        min-width: 45%; 
        flex: 1 1 45%;
        padding: 25px;
    }

    .benefit-card h3 {
        font-size: 22px;
    }

    .benefit-card p {
        font-size: 16px;
    }

    .application-process {
        padding-top: 40px;
    }

    .steps-container {
        flex-wrap: wrap;
        margin-top: 30px;
        gap: 40px; 
    }

    .step-item {
        max-width: 250px; 
    }
    
    .arrow {
        display: none; 
    }
    
    .step-content {
        min-width: 200px;
        height: auto; 
    }
    
    .step-item h4 {
        font-size: 20px;
    }
    
    .step-item p {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 30px 4%;
    }

    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 16px;
    }

    .benefits-grid {
        gap: 15px;
    }

    .benefit-card {
        flex: 1 1 100%; 
        min-width: 100%;
        padding: 20px;
    }

    .icon-circle {
        width: 48px;
        height: 48px;
        margin-bottom: 15px;
    }
    
    .icon-circle svg {
        width: 32px;
        height: 32px;
    }

    .what-you-get {
        padding-bottom: 40px;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .step-item {
        max-width: 100%;
    }
    
    .step-content {
        min-width: 100%;
        padding: 20px;
    }
    
    .step-number {
        margin-bottom: 10px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

:root {
    --green: #1C7F56;
    --light-bg: #F9F9F9;
    --text-color: #333;
    --light-text: #666;
}

.journey-section {
    padding: 80px 5%;
    text-align: center;
    background-color: #EFFAF4;
    font-family: 'Poppins', sans-serif;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.section-header p {
    font-size: 20px;
    color: var(--light-text);
    font-family: 'Poppins', sans-serif;
}

.phases-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.phase-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 300px;
    text-align: left;
    transition: transform 0.3s;
    font-family: 'Poppins', sans-serif;
}

.phase-card:hover {
    transform: translateY(-5px);
}

.time-badge {
    display: inline-block;
    background-color: var(--green);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.phase-card h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 5px;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}

.phase-card h4 {
    font-size: 1.1em;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 25px;
    color: var(--green);
    font-family: 'Poppins', sans-serif;
}

.milestones-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.milestones-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1em;
    color: var(--light-text);
    font-family: 'Poppins', sans-serif;
}

.milestones-list li svg {
    fill: var(--green);
    width: 18px;
    height: 18px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* 📱 Media Queries for Responsiveness 💻 */

@media (max-width: 1024px) {
    .journey-section {
        padding: 60px 5%;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 18px;
    }

    .phases-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .phase-card {
        flex: 1 1 45%; 
        min-width: 45%;
        padding: 25px;
    }

    .phase-card h3 {
        font-size: 1.3em;
    }

    .phase-card h4 {
        font-size: 1em;
    }

    .milestones-list li {
        font-size: 0.95em;
    }
}

@media (max-width: 600px) {
    .journey-section {
        padding: 40px 4%;
    }

    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 16px;
    }

    .phases-container {
        flex-direction: column; 
        gap: 15px;
    }

    .phase-card {
        flex: 1 1 100%; 
        min-width: 100%;
        padding: 20px;
    }
    
    .time-badge {
        margin-bottom: 15px;
    }
}

:root {
    --green: #1C7F56;
    --dark-green: #1C7F56;
    --text-color: #333;
    --light-text: #666;
}

.requirements-section {
    padding: 80px 5%;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    font-family: 'Poppins', sans-serif;
}

.requirements-content {
    flex: 2;
    text-align: left;
}

.requirements-content h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.requirements-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--light-text);
    font-family: 'Poppins', sans-serif;
}

.criteria-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.criteria-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}

.criteria-list li svg {
    fill: var(--green);
    width: 20px;
    height: 20px;
    margin-right: 10px;
    margin-top: 2px;
    flex-shrink: 0;
}

.cta-box-gr {
    flex: 1;
    background-color: #1C7F56;
    color: #fff;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    min-width: 300px;
    width: 90%;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.cta-box-gr h3 {
    font-size: 40px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.cta-box-gr p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #E0FFE0;
    font-family: 'Poppins', sans-serif;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.cta-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.cta-features li svg {
    fill: #fff;
    width: 20px;
    height: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.submit-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 64px;
    padding: 12px 32px;
    background: rgba(255, 255, 255, 0.07);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0px 0px rgba(255, 255, 255, 0);
}

.submit-button:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* 📱 Media Queries for Responsiveness 💻 */

@media (max-width: 1024px) {
    .requirements-section {
        flex-direction: column;
        gap: 30px;
        padding: 60px 5%;
        max-width: 100%;
    }

    .requirements-content {
        order: 2; /* Put content below CTA */
    }

    .requirements-content h2 {
        font-size: 32px;
    }

    .requirements-content p {
        font-size: 18px;
    }

    .criteria-list li {
        font-size: 16px;
    }

    .cta-box-gr {
        order: 1; /* Put CTA above content */
        max-width: 700px;
        margin: 0 auto;
        padding: 30px;
        width: auto;
        min-width: auto;
    }

    .cta-box-gr h3 {
        font-size: 32px;
    }

    .cta-box-gr p {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .requirements-section {
        padding: 40px 4%;
    }

    .requirements-content h2 {
        font-size: 26px;
    }

    .requirements-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .cta-box-gr {
        padding: 25px;
    }

    .cta-box-gr h3 {
        font-size: 26px;
    }

    .cta-box-gr p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .cta-features li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .submit-button {
        height: 56px;
    }
}

.closing-section {
  width: 90%;
  max-width: 90%;
  padding: 60px 0;
  box-sizing: border-box;
  margin: 0 auto;
}

.cta-box {
  font-family: 'Poppins', sans-serif; 
  color: white;
  text-align: center;
  padding: 60px 40px;
  border-radius: 48px;
  margin-bottom: 60px;
  height: auto;
  min-height: 459px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: 
    linear-gradient(40deg, 
      rgba(0, 0, 0, 0) 0%,           
      rgba(20, 102, 82, 0.58) 50%,  
      #297B68 100%),               
    url('/graphics/ctaCover.png'); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
}

.cta-box h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 24px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0px 0px rgba(255, 255, 255, 0);
  padding: 12px 32px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
  width: auto; 
  min-width: 200px; 
  height: 64px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap; 
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-logo-img {
  width: 198px;
  height: 96px;
  display: block;
  margin-bottom: 6px;
}

.logo-placeholder {
  width: 80px;
  height: 50px;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-bottom: 6px;
}

.footer-small {
  font-size: 12px;
  opacity: 0.7;
}

.footer-tagline {
  font-size: 24px;
  font-weight: 500;
  opacity: 0.7;
  margin-right: 20px;
  text-align: right;
  flex-grow: 1;
}

@media (max-width: 992px) {
  .contact-wrapper {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 48px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .contact-form {
    min-height: auto;
  }

  .info-block h3 {
    font-size: 28px;
  }

  .info-block p {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .cta-box h2 {
    font-size: 38px;
  }

  .cta-box p {
    font-size: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
  }

  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .footer-tagline {
    font-size: 18px;
    margin-right: 0;
    margin-bottom: 15px;
    text-align: center;
  }

  .footer-logo {
    align-items: center;
  }
}

@media (max-width: 576px) {
  .contact-title {
    font-size: 38px;
    margin-bottom: 20px;
  }

  .contact-section {
    padding: 40px 0;
  }
  
  .contact-form {
    padding: 20px;
  }

  .form-group {
    margin-bottom: 30px;
  }

  .cta-box h2 {
    font-size: 32px;
  }

  .cta-box {
    padding: 40px 20px;
    margin-bottom: 40px;
    min-height: 350px;
  }
}

.footer-section {
  width: 100%;
  background: white;
  padding: 60px 0;
  box-sizing: border-box;
}

.footer-divider {
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-divider.bottom-line {
  margin-top: 60px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
  gap: 40px;
  padding: 40px 0;
}

.footer-column {
  flex-grow: 1;
  min-width: 150px;
  max-width: 250px;
}

.footer-column:last-child {
  flex-grow: 2;
  min-width: 250px;
  max-width: 400px;
}

.footer-column h4 {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 20px;
}

.footer-column ul li a {
  font-size: 20px;
  opacity: 0.4;
  text-decoration: none;
  color: inherit;
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-item span {
  margin-right: 6px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1C7F56;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 32px;
  flex-shrink: 0;
}

.social-icon:hover {
  opacity: 1;
}

.map-container {
  width: 100%; 
  height: 224px;
  overflow: hidden;
}

.footer-bottom {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  opacity: 0.4;
  padding-top: 16px;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .footer-column,
    .footer-column:last-child {
        max-width: 100%;
        min-width: 100%;
        text-align: center;
    }

    .footer-column ul {
        width: fit-content;
        margin: 0 auto;
    }

    .footer-column h4 {
        margin-bottom: 15px;
    }

    .footer-column ul li a {
        font-size: 18px;
    }

    .social-links {
      justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 40px 0;
    }
    
    .footer-divider.bottom-line {
        margin-top: 40px;
    }

    .social-links {
      justify-content: center;
    }
}