/* ===== COOKIES POLICY PAGE STYLES ===== */

body {
    background-color: #ffffff !important;
}

.cookies-page {
    background-color: #ffffff;
    color: #222222;
    min-height: 100vh;
    padding: 60px 0 100px;
    margin-top: 20px;
}

.cookies-page__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Breadcrumbs */
.cookies-breadcrumbs {
    margin-bottom: 40px;
}

.cookies-breadcrumbs__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookies-breadcrumbs__item {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #888888;
}

.cookies-breadcrumbs__link {
    color: #666666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cookies-breadcrumbs__link:hover {
    color: #111111;
}

.cookies-breadcrumbs__separator {
    color: #cccccc;
    user-select: none;
}

.cookies-breadcrumbs__item--active {
    color: #111111;
    font-weight: 500;
}

/* Header */
.cookies-header {
    margin-bottom: 48px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 24px;
}

.cookies-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 500;
    color: #111111;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.cookies-date {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #888888;
    margin: 0;
}

/* Content Sections */
.cookies-content {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    font-size: 15px;
    color: #333333;
}

.cookies-section {
    margin-bottom: 40px;
}

.cookies-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 500;
    color: #111111;
    margin: 0 0 16px 0;
    letter-spacing: -0.01em;
}

.cookies-section p {
    margin: 0 0 16px 0;
}

.cookies-section p:last-child {
    margin-bottom: 0;
}

.cookies-section ul {
    margin: 0 0 20px 0;
    padding-left: 20px;
}

.cookies-section li {
    margin-bottom: 8px;
}

.cookies-section li:last-child {
    margin-bottom: 0;
}

.cookies-section strong {
    color: #111111;
    font-weight: 500;
}

/* Contact Card */
.cookies-contact-card {
    background-color: #fcfcfc;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 24px;
    margin-top: 24px;
}

.cookies-contact-card p {
    margin-bottom: 12px;
}

.cookies-contact-card p:last-child {
    margin-bottom: 0;
}

.cookies-contact-card strong {
    display: inline-block;
    min-width: 140px;
    color: #111111;
}

/* Responsive styles */
@media (max-width: 768px) {
    .cookies-page {
        padding: 40px 0 80px;
    }
    
    .cookies-title {
        font-size: 32px;
    }
    
    .cookies-section h2 {
        font-size: 20px;
    }
    
    .cookies-contact-card {
        padding: 16px;
    }
    
    .cookies-contact-card strong {
        display: block;
        margin-bottom: 4px;
    }
}
