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

body {
    background-color: #fff;
}

/* ===================== Header ===================== */
/* ===================== NAVBAR ===================== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 10px rgba(70, 70, 70, 0.9);
    z-index: 999;
}

nav {
    max-width: 1340px;
    height: 100px;
    margin: auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===================== LOGO ===================== */
.logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.logo-img {
    height: 3rem;
    object-fit: contain;
}

/* ===================== NAV LINKS ===================== */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: flex-start;
}

/* Anchor Tags & Dropdown Button */
.nav-links a,
.dropdown-btn {
    text-decoration: none;
    color: black;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 1rem;
    background: transparent;
    border: none;
}

/* Active Capsule */
.nav-links a.active,
.dropdown-btn.active {
    background-color: #235097;
    color: white !important;
    font-weight: 600;
}

/* Hover Effect */
.nav-links a:hover,
.dropdown-btn:hover {
    color: #235097;
}

/* ===================== DROPDOWN ===================== */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    margin-left: 19px;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 5px 10px rgba(70, 70, 70, 0.9);
    min-width: 200px;
    border-radius: 4px;
    z-index: 999;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: black;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
}

/* ===================== FOOTER ===================== */
footer {
    background-color: #161F2D;
    color: white;
    padding: 40px 20px 10px 20px;
}

.footer-sections {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1300px;
    margin: auto;
}

.footer-section {
    flex: 1 1 220px;
    margin-bottom: 20px;
}

.footer-section h4 {
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-section a {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    color: white;
}

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

/* Icon Row Before Copyright */

.footer-divider-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: transparent;
    margin-bottom: 10px;
}

.footer-divider {
    border: none;
    height: 1px;
    background-color: #ccc;
    width: 90%;
    max-width: 1300px;
    opacity: 0.6;
}

.footer-icons-row {
    width: 100%;
    padding: 5px 0;
    margin-top: 30px;
    background-color: transparent;
    /* Keeps background see-through */
    display: flex;
    justify-content: center;
    /* Centers the icons horizontally */
    align-items: center;
    gap: 30px;
    /* Spacing between icons */
}

.footer-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer-icon:hover {
    transform: scale(1.15);
    /* Slight zoom on hover */
}

.copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #ccc;
}

/* ============================== Privacy Policy Page Body Styling ==================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url(image/laptop-bg.webp);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-bottom: 60px;
    margin-top: 100px;
}

.hero-content {
    max-width: 800px;
    margin-left: 50px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Policy Content */
.policy-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 50px;
    margin-bottom: 60px;
}

.effective-date {
    background-color: #f0f7ff;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #3498db;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
}

.policy-section h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin: 25px 0 15px;
}

.policy-section p {
    margin-bottom: 15px;
    color: #555;
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-section li {
    margin-bottom: 8px;
    color: #555;
}

.policy-section ol {
    margin-left: 20px;
}

.highlight-box {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.contact-info {
    background-color: #e8f4fc;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-info h3 {
    color: #2980b9;
    margin-top: 0;
}

/* ========================== MOBILE RESPONSIVE of Privacy Policy =========================== */

/* ===================== NAVBAR - MOBILE RESPONSIVE ===================== */

@media (max-width: 992px) {
    nav {
        height: auto;
        padding: 1rem;
        flex-direction: column;
        align-items: stretch;
    }

    .logo {
        justify-content: left;
        margin-bottom: 1rem;
    }

    .logo-img {
        height: 4rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        display: none;
        /* Hidden by default, shown via hamburger */
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a,
    .dropdown-btn {
        padding: 10px;
        border-radius: 5px;
        width: 100%;
        text-align: center;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        margin-left: 0;
        width: 100%;
        box-shadow: none;
    }

    /* Mobile menu toggle */
    .menu-toggle {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1rem;
        cursor: pointer;
        z-index: 1000;
        margin-top: 20px;
    }

    .hamburger {
        width: 30px;
        height: 3px;
        background: #235097;
        display: block;
        position: relative;
        transition: all 0.3s ease;
    }

    .hamburger:before,
    .hamburger:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: #235097;
        transition: all 0.3s ease;
    }

    .hamburger:before {
        top: -8px;
    }

    .hamburger:after {
        top: 8px;
    }

    .menu-toggle.active .hamburger {
        background: transparent;
    }

    .menu-toggle.active .hamburger:before {
        top: 0;
        transform: rotate(45deg);
    }

    .menu-toggle.active .hamburger:after {
        top: 0;
        transform: rotate(-45deg);
    }
}

/* ===================== FOOTER - MOBILE RESPONSIVE ===================== */

@media (max-width: 936px) {
    footer {
        padding: 30px 15px 10px;
    }

    .footer-sections {
        flex-direction: column;
        gap: 25px;
    }

    .footer-section {
        flex: 1 1 100%;
        text-align: center;
    }

    .footer-section h4 {
        margin-bottom: 10px;
        font-size: 1.1rem;
    }

    .footer-section a {
        margin-bottom: 6px;
        font-size: 0.9rem;
    }

    .footer-icons-row {
        gap: 15px;
        margin-top: 20px;
    }

    .footer-icon {
        width: 35px;
        height: 35px;
    }

    .copyright {
        margin-top: 20px;
        font-size: 0.8rem;
    }
}

/* ===================== Main Privacy Policy Section - MOBILE RESPONSIVE ===================== */

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        margin-left: 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .policy-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}