* {
  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;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 5%;
}

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

.hero-btn::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));
}

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

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

    .intro-section {
        margin: 60px auto;
    }
}

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

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

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

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .service-title {
        font-size: 28px;
    }

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

    .intro-section {
        margin: 30px auto;
    }

    .section-label {
        padding: 8px 16px;
    }

    .hero-buttons > * {
        width: 100%;
        max-width: 300px;
    }
}

:root {
    --dark-green: #166c41;
    --light-green-bg: #E5FAEA;
    --text-white: #ffffff;
    --text-light: #777777;
    --text-dark: #333333;
}

.program-overview-section {
    display: flex;
    max-width: 1200px;
    margin: 60px auto;
    gap: 40px;
    padding: 0 20px;
    margin-top: 10%;
    font-family: 'poppins', sans-serif;
}

.program-info {
    flex: 2;
}

.program-info h3 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'poppins', sans-serif;
}

.program-info p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-light);
    font-family: 'poppins', sans-serif;
}

.program-details-grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.detail-card {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: var(--light-green-bg);
    padding: 20px;
    border-radius: 12px;
}

.detail-icon {
    font-size: 24px;
    margin-right: 15px;
}

.detail-label {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    font-family: 'poppins', sans-serif;
}

.detail-value {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    font-family: 'poppins', sans-serif;
}

.who-should-join-card {
    flex: 1;
    background-color: var(--dark-green);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.who-should-join-card h4 {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 20px;
    font-family: 'poppins', sans-serif;
}

.who-should-join-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.who-should-join-card ul li {
    font-size: 1em;
    color: var(--text-white);
    padding-left: 20px;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'poppins', sans-serif;
}

.who-should-join-card ul li::before {
    content: '●';
    color: var(--text-white);
    font-size: 0.8em;
    position: absolute;
    left: 0;
    top: 3px;
}

/* MEDIA QUERIES FOR RESPONSIVENESS */
@media (max-width: 1024px) {
    .program-overview-section {
        gap: 30px;
        margin: 40px auto;
    }
}

@media (max-width: 768px) {
    .program-overview-section {
        flex-direction: column;
        gap: 40px;
    }

    .program-info h3 {
        font-size: 32px;
    }

    .program-info p {
        font-size: 18px;
    }

    .program-details-grid {
        flex-direction: column;
        gap: 15px;
    }

    .detail-label {
        font-size: 16px;
    }
    
    .detail-value {
        font-size: 1em;
    }

    .who-should-join-card h4 {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .program-overview-section {
        padding: 0 15px;
    }

    .program-info h3 {
        font-size: 26px;
    }

    .program-info p {
        font-size: 16px;
    }

    .detail-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .detail-icon {
        margin-bottom: 5px;
        margin-right: 0;
    }
}

:root {
    --primary-green: #166c41;
    --section-bg-light-green: #E5FAEA;
    --card-bg-white: #ffffff;
    --text-light: #777777;
    --text-dark: #333333;
}

.training-modules-section {
    background-color: var(--section-bg-light-green);
    padding: 60px 20px;
    font-family: 'poppins', sans-serif;
}

.header {
    text-align: center;
    margin-bottom: 50px;
}

.header h2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-family: 'poppins', sans-serif;
}

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

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.module-card {
    background-color: var(--card-bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.module-number {
    width: 56px;
    height: 56px;
    background-color: var(--primary-green);
    color: white;
    font-weight: 600;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.module-duration {
    background-color: var(--section-bg-light-green);
    color: var(--primary-green);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.85em;
    font-weight: 500;
    font-family: 'poppins', sans-serif;
}

.module-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'poppins', sans-serif;
}

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

.module-topics li {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-family: 'poppins', sans-serif;
}

.module-topics li::before {
    content: '•';
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.2em;
    position: absolute;
    left: 0;
}

/* MEDIA QUERIES FOR RESPONSIVENESS */

@media (max-width: 1024px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .header h2 {
        font-size: 36px;
    }

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

@media (max-width: 768px) {
    .training-modules-section {
        padding: 40px 15px;
    }

    .modules-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .header h2 {
        font-size: 30px;
    }

    .module-card {
        padding: 20px;
    }

    .module-title {
        font-size: 18px;
    }

    .module-topics li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .header h2 {
        font-size: 24px;
    }
    
    .module-number {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    
    .module-duration {
        font-size: 0.8em;
    }
}

:root {
    --primary-green: #166c41;
    --section-bg-light-green: #E5FAEA;
    --card-bg-white: #ffffff;
    --text-light: #777777;
    --text-dark: #333333;
}

.program-benefits-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'poppins', sans-serif;
}

.program-benefits-section .header {
    text-align: center;
    margin-bottom: 50px;
}

.program-benefits-section .header h2 {
    font-size: 40px;
    font-weight: 600;
    font-family: 'poppins', sans-serif;
}

.benefits-grid-small {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card-small {
    background-color: var(--section-bg-light-green);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
}

.icon-circle-small {
    width: 56px;
    height: 56px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
}

.icon-circle-small .icon {
    font-size: 30px;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-family: 'poppins', sans-serif;
}

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


@media (max-width: 950px) {
    .benefits-grid-small {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .program-benefits-section .header h2 {
        font-size: 36px;
    }

    .benefit-title {
        font-size: 18px;
    }
    
    .benefit-description {
        font-size: 16px;
    }
}

@media (max-width: 580px) {
    .benefits-grid-small {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .program-benefits-section {
        padding: 40px 15px;
    }

    .program-benefits-section .header h2 {
        font-size: 30px;
    }

    .benefit-card-small {
        padding: 25px 15px;
    }

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

:root {
    --primary-green: #166c41;
    --section-bg-light-green: #E5FAEA;
    --card-bg-white: #ffffff;
    --text-light: #777777;
    --text-dark: #333333;
}

.training-schedule-section {
    background-color: var(--section-bg-light-green);
    padding: 60px 20px;
    font-family: 'poppins', sans-serif;
}

.header {
    text-align: center;
    margin-bottom: 50px;
}

.header h2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-family: 'poppins', sans-serif;
}

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

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cohort-card {
    background-color: var(--card-bg-white);
    padding: 30px;
    border-radius: 32px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.cohort-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-family: 'poppins', sans-serif;
}

.status-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 24px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    width: 80px;
    text-align: center;
    color: var(--text-light);
    transition: background-color 0.3s, color 0.3s;
    font-family: 'poppins', sans-serif;
}

.open {
    color: white;
}

.detail-line {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.detail-icon {
    font-size: 16px;
    color: var(--primary-green);
    margin-right: 15px;
}

.detail-label {
    font-size: 0.9em;
    color: var(--text-light);
    margin: 0;
    font-family: 'poppins', sans-serif;
}

.detail-value {
    font-size: 1em;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    font-family: 'poppins', sans-serif;
}

.register-button {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: auto;
    background-color: var(--primary-green);
    color: white;
    text-align: center;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    font-family: 'poppins', sans-serif;
}

.register-button:hover {
    background-color: #085a3c;
}

@media (max-width: 1024px) {
    .schedule-grid {
        gap: 20px;
    }

    .header h2 {
        font-size: 36px;
    }

    .cohort-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .training-schedule-section {
        padding: 40px 15px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .header h2 {
        font-size: 30px;
    }

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

    .cohort-title {
        font-size: 18px;
    }

    .status-tag {
        font-size: 16px;
        width: 70px;
    }
}

@media (max-width: 480px) {
    .header h2 {
        font-size: 24px;
    }

    .cohort-card {
        padding: 20px;
    }
    
    .detail-line {
        margin-bottom: 15px;
    }

    .detail-label,
    .detail-value {
        font-size: 0.9em;
    }
}

.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;
    }
}
