@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: #fcfcfc;
    color: #333;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
}

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

.scb-main-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    width: 100%;
}

.service-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.service-tag-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.section-label-news {
    display: inline-flex;
    align-items: center;
    background: #E5FAEA;
    color: #1C7F56;
    padding: 12px 24px;
    border-radius: 32px;
    font-size: 16px;
    margin: 40px auto 20px auto;
    width: auto;
    height: auto;
}

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

.page-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0b1215;
    line-height: 1.1;
    word-wrap: break-word;
}

.header-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
}

.content-split-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: start;
    width: 100%;
}

.overview-card {
    margin-bottom: 40px;
}

.section-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0b1215;
    position: relative;
    padding-left: 15px;
}

.section-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: #1C7F56;
    border-radius: 2px;
}

.overview-text {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

.benefits-container {
    background: #fcfcfc;
    border-radius: 16px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 16px;
    color: #444;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    transition: transform 0.2s;
    width: 100%;
}

.benefits-list li:hover {
    transform: translateX(5px);
    border-color: #1C7F56;
}

.benefits-list li i {
    color: #1C7F56;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    width: 100%;
}

.component-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.component-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #1C7F56;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: #E5FAEA;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #1C7F56;
    font-size: 24px;
    transition: all 0.3s;
}

.component-card:hover .icon-wrapper {
    background: #1C7F56;
    color: white;
}

.card-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.card-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.back-btn-container {
    text-align: center;
    margin: 60px 0;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #555;
    padding: 15px 35px;
    border-radius: 32px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.back-btn:hover {
    background-color: #1C7F56;
    color: white;
}

.footer-section {
    width: 100%;
    background: white;
    padding: 60px 0;
    overflow: hidden; 
}

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

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

@media (max-width: 900px) {
    .content-split-layout {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 42px;
    }
}

@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: 600px) {
    .components-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 32px;
    }
}

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

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

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