:root {
        --primary-color: #6c5ce7;
        --secondary-color: #8e44ad;
        --accent-color: #e84393;
        --accent-secondary: #00cec9;
        --light-color: #f8f9fa;
        --dark-color: #2d3436;
        --success-color: #00b894;
        --warning-color: #ff7675;
        --info-color: #0984e3;
        --border-radius: 10px;
        --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        --transition: all 0.3s ease;
    }

   

    .container {
        width: 100%;
        max-width: auto;
        margin: 0 auto;
        padding: 0 20px;
    }

    .inner-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .btn {
        display: inline-block;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        padding: 14px 28px;
        border: none;
        border-radius: var(--border-radius);
        cursor: pointer;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
        position: relative;
        z-index: 1;
        overflow: hidden;
        letter-spacing: 0.5px;
    }

    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        z-index: -1;
        transition: opacity 0.3s ease;
        opacity: 0;
    }

    .btn:hover::before {
        opacity: 1;
    }

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: var(--box-shadow);
    }

    .btn-secondary {
        background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    }

    .btn-secondary::before {
        background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: var(--secondary-color);
        text-align: center;
        position: relative;
        font-weight: 700;
        letter-spacing: -0.5px;
    }

    .section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        margin: 15px auto 0;
        border-radius: 2px;
    }

    .section-subtitle {
        font-size: 1.2rem;
        text-align: center;
        color: #6c757d;
        margin-bottom: 3rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.8;
    }

    .section-padding {
        padding: 100px 0;
    }

    .text-center {
        text-align: center;
    }

    .text-gradient {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .flex {
        display: flex;
    }

    .flex-wrap {
        flex-wrap: wrap;
    }

    .justify-between {
        justify-content: space-between;
    }

    .justify-center {
        justify-content: center;
    }

    .align-center {
        align-items: center;
    }

    .grid {
        display: grid;
        gap: 30px;
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Header Styles */
    .header {
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
    }

    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-decoration: none;
    }

    .nav-links {
        display: flex;
        list-style: none;
    }

    .nav-links li {
        margin-left: 30px;
    }

    .nav-links a {
        color: var(--dark-color);
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(to right, var(--primary-color), var(--accent-color));
        transition: width 0.3s ease;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .nav-links a:hover {
        color: var(--primary-color);
    }

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--dark-color);
    }

    /* Hero Banner */
    .hero-banner {
        background: linear-gradient(135deg, rgba(108, 92, 231, 0.9), rgba(232, 67, 147, 0.9)), url('https://images.pexels.com/photos/5473298/pexels-photo-5473298.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') center/cover no-repeat;
        padding: 200px 0 120px;
        color: white;
        text-align: center;
        position: relative;
    }

    .hero-banner::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to top, #f8f9fa, transparent);
    }

    .hero-title {
        font-size: 4rem;
        margin-bottom: 25px;
        line-height: 1.2;
        font-weight: 800;
        letter-spacing: -1px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 30px;
        opacity: 0.95;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.8;
        font-weight: 400;
    }

    /* Privacy Content Styles */
    .privacy-section {
        background: linear-gradient(135deg, #fff, #f8f9fa);
        position: relative;
        overflow: hidden;
    }

    .privacy-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(108, 92, 231, 0.05), rgba(108, 92, 231, 0) 70%);
    }

    .privacy-section::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(232, 67, 147, 0.05), rgba(232, 67, 147, 0) 70%);
    }

    .privacy-container {
        position: relative;
        z-index: 1;
        background-color: white;
        border-radius: 20px;
        box-shadow: var(--box-shadow);
        padding: 60px;
        margin-bottom: 50px;
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .privacy-heading {
        font-size: 2.2rem;
        margin-bottom: 25px;
        color: var(--secondary-color);
        padding-bottom: 15px;
        border-bottom: 2px solid #f1f3f9;
        font-weight: 700;
        letter-spacing: -0.5px;
        display: flex;
        align-items: center;
    }

    .privacy-heading-number {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: white;
        border-radius: 50%;
        margin-right: 15px;
        font-size: 1.5rem;
        font-weight: 600;
        flex-shrink: 0;
    }

    .privacy-subheading {
        font-size: 1.5rem;
        margin: 35px 0 20px;
        color: var(--secondary-color);
        font-weight: 600;
        letter-spacing: -0.3px;
    }

    .privacy-text {
        margin-bottom: 20px;
        color: #6c757d;
        line-height: 1.8;
    }

    .privacy-text a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        transition: var(--transition);
        border-bottom: 1px dashed var(--primary-color);
    }

    .privacy-text a:hover {
        color: var(--accent-color);
        border-bottom-color: var(--accent-color);
    }

    .privacy-list {
        margin-bottom: 25px;
        padding-left: 20px;
    }

    .privacy-list-item {
        margin-bottom: 12px;
        color: #6c757d;
        position: relative;
        padding-left: 15px;
    }

    .privacy-list-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 12px;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    }

    .privacy-highlight {
        background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), rgba(232, 67, 147, 0.05));
        padding: 30px;
        border-radius: 15px;
        margin: 35px 0;
        border-left: 4px solid var(--primary-color);
        position: relative;
    }

    .privacy-highlight::before {
        content: '\f05a';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        top: -15px;
        left: 30px;
        background: white;
        color: var(--primary-color);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .privacy-highlight-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--secondary-color);
    }

    .privacy-highlight-text {
        color: #6c757d;
        line-height: 1.8;
    }

    .privacy-date {
        font-style: italic;
        color: #6c757d;
        margin-top: 50px;
        padding-top: 25px;
        border-top: 2px solid #f1f3f9;
        text-align: right;
    }

    .privacy-intro {
        background: linear-gradient(135deg, rgba(108, 92, 231, 0.03), rgba(232, 67, 147, 0.03));
        padding: 40px;
        border-radius: 15px;
        margin-bottom: 50px;
        position: relative;
        overflow: hidden;
    }

    .privacy-intro::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    }

    .privacy-intro-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: var(--secondary-color);
        font-weight: 700;
    }

    .privacy-intro-text {
        color: #6c757d;
        line-height: 1.8;
        margin-bottom: 0;
    }

    .privacy-section-divider {
        height: 2px;
        background: linear-gradient(to right, rgba(108, 92, 231, 0.1), rgba(232, 67, 147, 0.1));
        margin: 60px 0;
        position: relative;
    }

    .privacy-section-divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 10px;
        height: 10px;
        background: white;
        border: 2px solid rgba(108, 92, 231, 0.3);
        border-radius: 50%;
    }

    .privacy-cta {
        background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(232, 67, 147, 0.1));
        border-radius: 15px;
        padding: 40px;
        margin: 50px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .privacy-cta::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(108, 92, 231, 0.2), rgba(108, 92, 231, 0) 70%);
        border-radius: 50%;
    }

    .privacy-cta::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: -50px;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(232, 67, 147, 0.2), rgba(232, 67, 147, 0) 70%);
        border-radius: 50%;
    }

    .privacy-cta-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: var(--secondary-color);
        font-weight: 700;
    }

    .privacy-cta-text {
        color: #6c757d;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.8;
    }

    .privacy-table {
        width: 100%;
        border-collapse: collapse;
        margin: 30px 0;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .privacy-table-header {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: white;
        text-align: left;
        font-weight: 600;
    }

    .privacy-table-header-cell {
        padding: 15px 20px;
    }

    .privacy-table-row:nth-child(even) {
        background-color: rgba(108, 92, 231, 0.05);
    }

    .privacy-table-row:hover {
        background-color: rgba(108, 92, 231, 0.1);
    }

    .privacy-table-cell {
        padding: 15px 20px;
        border-bottom: 1px solid #f1f3f9;
        color: #6c757d;
    }

    

    /* Cookie Consent */
    .cookie-consent {
        position: fixed;
        bottom: -100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 9999;
        transition: bottom 0.5s ease;
    }

    .cookie-consent.active {
        bottom: 0;
    }

    .cookie-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        flex-wrap: wrap;
        gap: 20px;
    }

    .cookie-text {
        flex: 1;
        min-width: 280px;
        color: #6c757d;
    }

    .cookie-buttons {
        display: flex;
        gap: 15px;
    }

    .cookie-btn {
        padding: 10px 20px;
        border-radius: var(--border-radius);
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
    }

    .cookie-accept {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: white;
        border: none;
    }

    .cookie-accept:hover {
        transform: translateY(-3px);
        box-shadow: var(--box-shadow);
    }

    .cookie-decline {
        background: transparent;
        color: #6c757d;
        border: 1px solid #e9ecef;
    }

    .cookie-decline:hover {
        background-color: #f8f9fa;
    }

    /* Responsive Styles */
    @media (max-width: 1200px) {
        .hero-title {
            font-size: 3.5rem;
        }
        
        .section-padding {
            padding: 80px 0;
        }
    }

    @media (max-width: 992px) {
        .section-padding {
            padding: 70px 0;
        }

        .section-title {
            font-size: 2.2rem;
        }

        .privacy-container {
            padding: 40px;
        }
    }

    @media (max-width: 768px) {
        .section-padding {
            padding: 60px 0;
        }

        .section-title {
            font-size: 2rem;
        }

        .hero-title {
            font-size: 2.8rem;
        }

        .hero-subtitle {
            font-size: 1.2rem;
        }

        .nav-links {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: white;
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-links li {
            margin: 10px 0;
        }

        .mobile-menu-btn {
            display: block;
        }

        .privacy-container {
            padding: 30px;
        }

        .privacy-heading {
            font-size: 1.8rem;
        }

        .privacy-heading-number {
            width: 40px;
            height: 40px;
            font-size: 1.3rem;
        }

        .privacy-subheading {
            font-size: 1.3rem;
        }

        .privacy-intro {
            padding: 30px;
        }

        .privacy-intro-title {
            font-size: 1.6rem;
        }

        .privacy-cta {
            padding: 30px;
        }

        .privacy-cta-title {
            font-size: 1.6rem;
        }

        .privacy-table {
            display: block;
            overflow-x: auto;
        }
    }

    @media (max-width: 576px) {
        .section-padding {
            padding: 50px 0;
        }

        .section-title {
            font-size: 1.8rem;
        }

        .hero-title {
            font-size: 2.2rem;
        }

        .privacy-container {
            padding: 25px;
        }

        .privacy-heading {
            font-size: 1.6rem;
            flex-direction: column;
            align-items: flex-start;
        }

        .privacy-heading-number {
            margin-bottom: 10px;
        }

        .footer-form {
            flex-direction: column;
        }

        .footer-input {
            width: 100%;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }

        .footer-btn {
            width: 100%;
            padding: 12px;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
        }

        .back-to-top {
            bottom: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
        }

        .cookie-content {
            flex-direction: column;
            align-items: flex-start;
        }

        .cookie-buttons {
            width: 100%;
            justify-content: space-between;
        }
    }