/* ====================================
   Cookie Policy Page Styles
   ==================================== */

/* Page Header */
.page-header {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    margin-top: 70px;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.3);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: rgba(118, 75, 162, 0.4);
    bottom: -100px;
    left: -50px;
    animation-delay: 7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(102, 126, 234, 0.3);
    top: 50%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.header-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 3rem;
    margin: 0 auto 30px;
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb .separator {
    opacity: 0.6;
}

.breadcrumb .current {
    font-weight: 600;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.page-description {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 30px;
}

.last-update {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.last-update i {
    font-size: 1.1rem;
}

/* Cookie Content Section */
.cookie-content-section {
    padding: 80px 0;
    background: #f9fafb;
}

.cookie-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
}

/* Sidebar */
.cookie-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.cookie-sidebar h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.cookie-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 30px;
}

.cookie-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-right: 3px solid transparent;
}

.cookie-nav .nav-item:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    transform: translateX(-5px);
}

.cookie-nav .nav-item.active {
    background: rgba(102, 126, 234, 0.15);
    color: #667eea;
    border-right-color: #667eea;
    font-weight: 600;
}

.cookie-nav .nav-item i {
    font-size: 1.1rem;
    width: 20px;
}

.sidebar-cta {
    background: linear-gradient(145deg, #ffffff 0%, #f9fafb 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.sidebar-cta .cta-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.sidebar-cta h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.sidebar-cta p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.sidebar-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar-cta .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Main Content */
.cookie-main {
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.cookie-section {
    margin-bottom: 60px;
    scroll-margin-top: 120px;
}

.cookie-section:last-child {
    margin-bottom: 0;
}

.cookie-section .section-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 18px;
    color: white;
    font-size: 2rem;
    margin-bottom: 25px;
    animation: iconPop 0.5s ease-out;
}

@keyframes iconPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.cookie-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 25px;
}

.cookie-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 30px 0 20px;
}

.cookie-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.section-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.section-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.section-content a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Info Box */
.info-box {
    display: flex;
    gap: 20px;
    background: linear-gradient(145deg, #dbeafe 0%, #eff6ff 100%);
    padding: 25px;
    border-radius: 16px;
    border-right: 4px solid #3b82f6;
    margin: 30px 0;
}

.info-box > i {
    font-size: 2rem;
    color: #3b82f6;
    flex-shrink: 0;
}

.info-box div {
    flex: 1;
}

.info-box h4 {
    color: var(--gray-900);
    margin-bottom: 12px;
}

.info-box p {
    margin: 0;
    color: var(--gray-700);
}

/* Cookie Features */
.cookie-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.feature-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    background: white;
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card .feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.feature-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* Usage List */
.usage-list {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.usage-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: #f9fafb;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.usage-item:hover {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(-5px);
}

.usage-item .usage-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.usage-item .usage-content h4 {
    color: var(--gray-900);
    margin-bottom: 8px;
}

.usage-item .usage-content p {
    margin: 0;
    color: var(--gray-600);
}

/* Cookie Types */
.cookie-types {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.cookie-type-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cookie-type-card:hover {
    background: white;
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.type-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.type-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.type-icon.essential {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.type-icon.functional {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.type-icon.analytics {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.type-icon.marketing {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.type-info {
    flex: 1;
}

.type-info h4 {
    margin-bottom: 8px;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.essential-badge {
    background: #ef4444;
    color: white;
}

.functional-badge,
.analytics-badge,
.marketing-badge {
    background: #10b981;
    color: white;
}

.type-examples {
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 12px;
}

.type-examples strong {
    display: block;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.type-examples ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.type-examples ul li {
    padding-right: 25px;
    margin-bottom: 8px;
    position: relative;
    color: var(--gray-700);
}

.type-examples ul li::before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    font-size: 1.4rem;
    position: absolute;
    right: 0;
    top: -2px;
}

.type-duration {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    margin-top: 15px;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.type-duration i {
    color: #667eea;
}

/* Third Party Services */
.third-party-services {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.service-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-logo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--gray-900);
}

.service-card p {
    color: var(--gray-700);
    margin-bottom: 20px;
}

.service-cookies {
    margin: 20px 0;
}

.service-cookies strong {
    display: block;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.cookie-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-tag {
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #667eea;
    border: 2px solid #667eea;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #764ba2;
    gap: 15px;
}

/* Warning Box */
.warning-box {
    display: flex;
    gap: 20px;
    background: linear-gradient(145deg, #fef3c7 0%, #fef9e7 100%);
    padding: 25px;
    border-radius: 16px;
    border-right: 4px solid #f59e0b;
    margin: 30px 0;
}

.warning-box > i {
    font-size: 2rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.warning-box div {
    flex: 1;
}

.warning-box h4 {
    color: var(--gray-900);
    margin-bottom: 12px;
}

.warning-box p {
    margin: 0;
    color: var(--gray-700);
}

/* Management Options */
.management-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.option-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.option-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.option-card .option-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.option-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.option-card p {
    margin: 0;
    color: var(--gray-600);
}

/* Browser Guides */
.browser-guides {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.browser-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.browser-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.browser-card .browser-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 15px;
}

.browser-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.browser-card p {
    color: var(--gray-700);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.browser-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.browser-link:hover {
    color: #764ba2;
    gap: 15px;
}

/* Choices Grid */
.choices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.choice-card {
    background: #f9fafb;
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.choice-card:hover {
    background: white;
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.choice-card .choice-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.choice-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.choice-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray-600);
}

/* Preference Center */
.preference-center {
    background: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 40px 0;
}

.preference-center h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--gray-900);
}

.preference-center p {
    margin-bottom: 25px;
    color: var(--gray-700);
}

.preferences-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.preferences-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

/* Update Timeline */
.update-timeline {
    margin: 30px 0;
}

.update-item {
    display: flex;
    gap: 25px;
    padding: 25px;
    background: #f9fafb;
    border-radius: 16px;
}

.update-date {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    white-space: nowrap;
    font-weight: 600;
    flex-shrink: 0;
}

.update-content h4 {
    color: var(--gray-900);
    margin-bottom: 8px;
}

.update-content p {
    margin: 0;
    color: var(--gray-600);
}

/* Notification Box */
.notification-box {
    display: flex;
    gap: 20px;
    background: linear-gradient(145deg, #dcfce7 0%, #f0fdf4 100%);
    padding: 25px;
    border-radius: 16px;
    border-right: 4px solid #10b981;
    margin: 30px 0;
}

.notification-box > i {
    font-size: 2rem;
    color: #10b981;
    flex-shrink: 0;
}

.notification-box div {
    flex: 1;
}

.notification-box h4 {
    color: var(--gray-900);
    margin-bottom: 12px;
}

.notification-box p {
    margin-bottom: 15px;
    color: var(--gray-700);
}

.notification-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notification-box ul li {
    padding-right: 25px;
    margin-bottom: 10px;
    position: relative;
    color: var(--gray-700);
}

.notification-box ul li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    right: 0;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background: #f9fafb;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.contact-method .method-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-method .method-info h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--gray-900);
}

.contact-method .method-info a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method .method-info a:hover {
    color: #764ba2;
}

.contact-method .method-info p {
    margin: 0;
    color: var(--gray-600);
}

.contact-cta {
    text-align: center;
    margin-top: 40px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

/* Related Policies */
.related-policies {
    margin-top: 40px;
}

.related-policies h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.policy-links {
    display: grid;
    gap: 20px;
}

.policy-link-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f9fafb;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.policy-link-card:hover {
    background: white;
    border-color: #667eea;
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.policy-link-card > i:first-child {
    font-size: 2.5rem;
    color: #667eea;
    flex-shrink: 0;
}

.policy-link-card > div {
    flex: 1;
}

.policy-link-card h4 {
    color: var(--gray-900);
    margin-bottom: 5px;
}

.policy-link-card p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.policy-link-card > i:last-child {
    color: #667eea;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cookie-wrapper {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }
    
    .cookie-main {
        padding: 40px;
    }
    
    .cookie-features,
    .management-options,
    .browser-guides,
    .choices-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .cookie-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cookie-sidebar {
        display: none;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 60px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .cookie-main {
        padding: 30px 20px;
    }
    
    .cookie-section h2 {
        font-size: 1.8rem;
    }
    
    .cookie-section h3 {
        font-size: 1.3rem;
    }
    
    .info-box,
    .warning-box,
    .notification-box {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 120px 0 50px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .header-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .cookie-section .section-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cookie-main {
        padding: 25px 15px;
    }
}
