.cookies-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.cookies-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cookies-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.cookies-header h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4);
    border-radius: 2px;
}

.cookies-header p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 1rem;
    font-style: italic;
}

.content-section {
    margin-bottom: 2.5rem;
}

.content-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.content-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.5rem 0 0.75rem;
}

.content-section p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-section ul {
    color: var(--text-gray);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-section ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.content-section a {
    color: var(--primary-dark);
    text-decoration: none;
}

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

.contact-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .cookies-content {
        padding: 2rem 1rem;
    }

    .cookies-header h1 {
        font-size: 1.75rem;
    }

    .content-section h2 {
        font-size: 1.25rem;
    }

    .content-section h3 {
        font-size: 1rem;
    }

    .contact-info {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .cookies-header h1 {
        font-size: 1.5rem;
    }
}
