/* === NAVBAR === */
.header {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #6a11cb;
}

.logo img {
    height: 32px;
    margin-right: 8px;
}

.logo .logo-fallback {
    display: none;
}

.logo,
.logo a,
.logo img {
    -webkit-tap-highlight-color: transparent;

    -webkit-user-drag: none;
    user-select: none;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav-divider {
    width: 2px;
    height: 24px;
    background-color: #ccc;
    margin: 0 10px;
    display: inline-block;
}

.nav-link {
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #6a11cb;
}

.nav-link.active {
    font-weight: 600;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.nav-icon:hover svg {
    transform: scale(1.1);
}

/* Icons */
.telegram-icon {
    background-color: #e9f5ff;
}

.telegram-icon:hover {
    background-color: #d1ebff;
}

.telegram-icon svg path {
    fill: #0088cc;
}

.whatsapp-icon {
    background-color: #e7f7e9;
}

.whatsapp-icon:hover {
    background-color: #d4f0d9;
}

.whatsapp-icon svg path {
    fill: #25D366;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: #f1f1f1;
    padding: 6px 10px;
    border-radius: 20px;
    font-weight: 600;
    color: #4E69CB;
    text-decoration: none;
    transition: background 0.3s;
}

.nav-phone:hover {
    background-color: #e3e3e3;
    color: #6a11cb;
}

.nav-phone svg {
    width: 20px;
    height: 20px;
    fill: #6a11cb;
}

.language-select {
    margin-left: 10px;
    padding: 4px 6px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 0.9rem;
}

/* Toggle Button */
.mobile-toggle {
    display: none;
    width: 32px;
    height: 28px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* Bars */
.mobile-toggle .bar {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle .bar:nth-child(1) {
    top: 0;
}

.mobile-toggle .bar:nth-child(2) {
    top: 12px;
}

.mobile-toggle .bar:nth-child(3) {
    bottom: 0;
}

/* Open (X) State */
.mobile-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
}

.mobile-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 12px;
}

/* Show on mobile */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-phone .phone-number {
        display: none;
    }
}

/* Right-side Icons Group */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 64px;
        left: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 20px;
    }

    .nav.show {
        display: flex;
        margin-top: 15px;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-container {
        flex-wrap: nowrap;
        justify-content: space-between;
    }

    .nav-right {
        gap: 10px;
        margin-left: auto;
    }
}


/* Base styles */
:root {
    --primary: #6a11cb;
    --primary-light: #2575fc;
    --dark: #1F2937;
    --gray: #6B7280;
    --light: #f9fafb;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

.container-main {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

h1,
h2 {
    color: var(--dark);
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: var(--primary);
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-right: 0.75rem;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.section-icon i {
    font-size: 1rem;
}

p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

strong {
    color: var(--primary);
    font-weight: 600;
}

ul {
    list-style: none;
    margin-bottom: 1.5rem;
    padding-left: 1rem;
}

li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    color: var(--gray);
}

/* Default icon for list items */
li::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--primary);
    font-size: 1.2rem;
}

/* Information We Collect icons */
.collect-info li:nth-child(1)::before {
    content: "\f007";
    /* user icon */
}

.collect-info li:nth-child(2)::before {
    content: "\f0e0";
    /* envelope icon */
}

.collect-info li:nth-child(3)::before {
    content: "\f095";
    /* phone icon */
}

.collect-info li:nth-child(4)::before {
    content: "\f108";
    /* desktop icon */
}

.collect-info li:nth-child(5)::before {
    content: "\f017";
    /* clock icon */
}

.collect-info li:nth-child(6)::before {
    content: "\f15c";
    /* document icon */
}

/* How We Use Your Information icons */
.use-info li:nth-child(1)::before {
    content: "\f0b1";
    /* briefcase icon */
}

.use-info li:nth-child(2)::before {
    content: "\f0e0";
    /* envelope icon */
}

.use-info li:nth-child(3)::before {
    content: "\f086";
    /* comment icon */
}

.use-info li:nth-child(4)::before {
    content: "\f155";
    /* dollar icon */
}

.use-info li:nth-child(5)::before {
    content: "\f0c0";
    /* users icon */
}

/* Your Rights icons */
.rights li:nth-child(1)::before {
    content: "\f06e";
    /* eye icon */
}

.rights li:nth-child(2)::before {
    content: "\f044";
    /* edit icon */
}

.rights li:nth-child(3)::before {
    content: "\f1f8";
    /* trash icon */
}

.rights li:nth-child(4)::before {
    content: "\f05e";
    /* ban icon */
}

/* Contact Us icons */
.contact-info li:nth-child(1)::before {
    content: "\f0e0";
    /* envelope icon */
}

.contact-info li:nth-child(2)::before {
    content: "\f3fe";
    /* telegram icon */
    font-family: "Font Awesome 6 Brands";
}

.contact-info li:nth-child(3)::before {
    content: "\f0ac";
    /* globe icon */
}

container-main a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border-bottom: 1px dotted var(--primary);
}

container-main a:hover {
    color: var(--primary-light);
    border-bottom: 1px solid var(--primary-light);
}

/* Privacy Section Styles */
.privacy-section {
    padding: 4rem 0;
    background-color: var(--light);
    position: relative;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236a11cb' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

.privacy-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

/* Footer with attribution */
.footer {
    text-align: center;
    padding: 2rem 0 1rem;
    font-size: 0.9rem;
    color: var(--gray);
}


/* Responsive styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .privacy-content {
        padding: 2rem 1.5rem;
    }

    .section-icon {
        width: 1.8rem;
        height: 1.8rem;
        margin-right: 0.5rem;
    }

    .section-icon i {
        font-size: 0.9rem;
    }
}