* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Aptos', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================
           HEADER
        ======================== */
header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-top {
    background: #0a5c25;
    padding: 8px 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left {
    display: flex;
    gap: 20px;
}

.header-top-left a {
    color: #ffffff;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-top-left a:hover {
    text-decoration: underline;
}

.header-top-right {
    display: flex;
    gap: 16px;
}

.header-top-right a {
    color: #ffffff;
    font-size: 13px;
}

.header-top-right a:hover {
    text-decoration: underline;
}

.header-main {
    padding: 12px 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-divider {
    width: 1px;
    height: 40px;
    background: #0a5c25;
}

nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

nav>a,
.nav-dropdown>a {
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 4px;
    transition: all 0.2s;
}

nav>a:hover,
.nav-dropdown:hover>a {
    background: #f5f5f5;
    color: #0a5c25;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown>a {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-dropdown>a i {
    font-size: 10px;
    transition: transform 0.2s;
}

.nav-dropdown:hover>a i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: #333333;
    border-bottom: 1px solid #f0f0f0;
}

.nav-dropdown-menu a:last-child {
    border-bottom: none;
}

.nav-dropdown-menu a:hover {
    background: #f8f8f8;
    color: #0a5c25;
}

.nav-dropdown-menu a i {
    color: #0a5c25;
    width: 16px;
}

.nav-cta {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-left: 8px;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #1fb855, #0f7a6b) !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333333;
    border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 1001;
    padding: 60px 20px 20px;
    transition: right 0.3s;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    color: #333333;
    cursor: pointer;
}

.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    color: #333333;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-menu a:hover {
    color: #0a5c25;
}

.mobile-menu-title {
    font-size: 12px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    margin-bottom: 8px;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* ========================
           PAGE HEADER
        ======================== */
.page-header {
    margin-top: 110px;
    background: linear-gradient(135deg, #0a5c25 0%, #0d7e33 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/img/slide/slide-1.JPG') center center / cover no-repeat;
    opacity: 0.08;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb span {
    color: #76c42c;
}

/* ========================
           POLICY CONTENT
        ======================== */
.policy-section {
    padding: 60px 0;
    background: #ffffff;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a5c25;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e8f5e9;
}

.policy-content h3:first-child {
    margin-top: 0;
}

.policy-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-top: 24px;
    margin-bottom: 12px;
}

.policy-content p {
    color: #555555;
    margin-bottom: 16px;
    text-align: justify;
}

.policy-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.policy-content ul li {
    color: #555555;
    margin-bottom: 12px;
    text-align: justify;
}

.policy-content ul li strong {
    color: #333333;
}

.policy-content a {
    color: #0a5c25;
    text-decoration: underline;
}

.policy-content a:hover {
    color: #0d7e33;
}

.channel-box {
    background: #e8f5e9;
    border-left: 4px solid #0a5c25;
    padding: 24px;
    border-radius: 0 8px 8px 0;
    margin: 30px 0;
}

.channel-box h3 {
    margin-top: 0 !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.channel-box p {
    margin-bottom: 8px;
}

.channel-box p:last-child {
    margin-bottom: 0;
}

/* ========================
           FOOTER
        ======================== */
footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-copyright {
    color: #888888;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-credits {
    color: #666666;
    font-size: 13px;
}

.footer-credits a {
    color: #76c42c;
}

.footer-credits a:hover {
    text-decoration: underline;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .header-top {
        display: none;
    }

    .page-header {
        margin-top: 74px;
    }

    nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 26px;
    }

    .policy-content h3 {
        font-size: 18px;
    }

    .logo img {
        height: 40px;
    }
}