body {
        font-family: 'Poppins', sans-serif;
        background-color: #000000;
        color: #E0E0E0;
        margin: 0;
        padding: 0;
    }

    .cookies-section {
        min-height: 100vh;
        padding: 8rem 2rem 4rem;
        background: #000000;
        position: relative;
        overflow: hidden;
    }

    .cookies-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(0, 194, 160, 0.15), transparent 70%);
        filter: blur(120px);
        pointer-events: none;
    }

    .cookies-container {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .page-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .page-label {
        display: inline-block;
        color: #1E73BE;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .page-title {
        font-size: 3rem;
        font-weight: 700;
        color: #FFFFFF;
        margin-bottom: 1rem;
    }

    .page-title-gradient {
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .page-subtitle {
        font-size: 1.1rem;
        color: #B0B0B0;
        line-height: 1.6;
        max-width: 700px;
        margin: 0 auto;
    }

    .cookies-content {
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(15, 15, 15, 0.8));
        border: 1px solid rgba(30, 115, 190, 0.2);
        border-radius: 20px;
        padding: 3rem;
        backdrop-filter: blur(10px);
        margin-bottom: 2rem;
    }

    .intro-text {
        font-size: 1rem;
        color: #B0B0B0;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .cookie-category {
        background: rgba(30, 115, 190, 0.05);
        border: 1px solid rgba(30, 115, 190, 0.2);
        border-radius: 16px;
        padding: 2rem;
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
    }

    .cookie-category:hover {
        border-color: rgba(30, 115, 190, 0.4);
        background: rgba(30, 115, 190, 0.08);
    }

    .cookie-category-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .cookie-category-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: #FFFFFF;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .cookie-category-title i {
        color: #1E73BE;
        font-size: 1.2rem;
    }

    .cookie-toggle {
        position: relative;
        width: 60px;
        height: 30px;
        background: rgba(30, 115, 190, 0.2);
        border-radius: 15px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .cookie-toggle.disabled {
        cursor: not-allowed;
        opacity: 0.6;
    }

    .cookie-toggle::after {
        content: '';
        position: absolute;
        top: 3px;
        left: 3px;
        width: 24px;
        height: 24px;
        background: #FFFFFF;
        border-radius: 50%;
        transition: transform 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .cookie-toggle.active {
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
    }

    .cookie-toggle.active::after {
        transform: translateX(30px);
    }

    .cookie-status {
        font-size: 0.85rem;
        font-weight: 600;
        margin-left: 0.5rem;
    }

    .cookie-status.active {
        color: #00C2A0;
    }

    .cookie-status.inactive {
        color: #B0B0B0;
    }

    .cookie-category-desc {
        font-size: 0.95rem;
        color: #B0B0B0;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .cookie-details {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        padding: 1rem;
        margin-top: 1rem;
    }

    .cookie-details h4 {
        font-size: 0.9rem;
        color: #E0E0E0;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    .cookie-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .cookie-list li {
        padding: 0.5rem 0;
        color: #B0B0B0;
        font-size: 0.85rem;
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid rgba(30, 115, 190, 0.1);
    }

    .cookie-list li:last-child {
        border-bottom: none;
    }

    .cookie-name {
        color: #1E73BE;
        font-weight: 500;
    }

    .cookie-duration {
        color: #00C2A0;
        font-size: 0.8rem;
    }

    .save-preferences-btn {
        background: linear-gradient(135deg, #1E73BE, #00C2A0);
        color: #FFFFFF;
        border: none;
        border-radius: 50px;
        padding: 1rem 3rem;
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: 'Poppins', sans-serif;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .save-preferences-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(30, 115, 190, 0.5);
    }

    .info-box {
        background: rgba(0, 194, 160, 0.1);
        border: 1px solid rgba(0, 194, 160, 0.3);
        border-radius: 12px;
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .info-box h4 {
        color: #00C2A0;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .info-box p {
        margin: 0.5rem 0;
        color: #B0B0B0;
        line-height: 1.6;
    }

    .success-message {
        background: rgba(0, 194, 160, 0.2);
        border: 1px solid #00C2A0;
        color: #00C2A0;
        padding: 1rem 1.5rem;
        border-radius: 12px;
        margin-bottom: 2rem;
        display: none;
        align-items: center;
        gap: 0.75rem;
    }

    .success-message.show {
        display: flex;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .cookies-section {
            padding: 6rem 1.5rem 3rem;
        }

        .page-title {
            font-size: 2rem;
        }

        .cookies-content {
            padding: 2rem 1.5rem;
        }

        .cookie-category {
            padding: 1.5rem;
        }

        .cookie-category-header {
            flex-direction: column;
            align-items: flex-start;
        }

        .cookie-category-title {
            font-size: 1.1rem;
        }

        .save-preferences-btn {
            width: 100%;
            justify-content: center;
        }

        .cookie-list li {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.25rem;
        }
    }