.cookie-hero {
    background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 45%, #ffffff 100%);
    padding: 3.5rem 1.5rem 2rem;
}

.cookie-hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    min-width: 0;
}

.cookie-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.cookie-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 0.9rem;
}

.cookie-hero p {
    max-width: 820px;
    color: #475569;
    font-size: 1.05rem;
}

.cookie-meta {
    margin-top: 1rem;
    color: #64748b;
    font-size: 0.92rem;
}

.cookie-content {
    padding: 1rem 1.5rem 3rem;
}

.cookie-layout {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
    min-width: 0;
}

.cookie-sidebar {
    position: sticky;
    top: 110px;
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 20px;
    padding: 1.25rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.cookie-sidebar h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: #0f172a;
    margin-bottom: 0.9rem;
}

.cookie-sidebar nav {
    display: grid;
    gap: 0.7rem;
}

.cookie-sidebar a {
    text-decoration: none;
    color: #475569;
    font-weight: 600;
}

.cookie-sidebar a:hover {
    color: #2563eb;
}

.cookie-main {
    display: grid;
    gap: 1.2rem;
    min-width: 0;
}

.cookie-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
    min-width: 0;
}

.cookie-card h2 {
    font-family: 'Poppins', sans-serif;
    color: #0f172a;
    margin-bottom: 0.9rem;
}

.cookie-card p,
.cookie-card li {
    color: #475569;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.cookie-card ul {
    margin-left: 1.1rem;
    margin-top: 0.8rem;
}

.cookie-highlight {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e3a8a;
    display: grid;
    gap: 0.35rem;
}

.cookie-table {
    display: grid;
    margin: 1rem 0 1.2rem;
    border: 1px solid #dbeafe;
    border-radius: 18px;
    overflow: hidden;
    min-width: 0;
}

.cookie-table-row {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 220px;
}

.cookie-table-row span {
    padding: 0.95rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    min-width: 0;
    overflow-wrap: anywhere;
}

.cookie-table-row span:not(:last-child) {
    border-right: 1px solid #e2e8f0;
}

.cookie-table-head {
    background: #eff6ff;
    font-weight: 700;
    color: #0f172a;
}

.cookie-table .cookie-table-row:last-child span {
    border-bottom: none;
}

@media (max-width: 920px) {
    .cookie-layout {
        grid-template-columns: 1fr;
    }

    .cookie-sidebar {
        position: static;
    }

    .cookie-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 720px) {
    .cookie-card {
        padding: 1.35rem;
    }

    .cookie-table-row {
        grid-template-columns: 1fr;
    }

    .cookie-table-row span {
        border-right: none !important;
    }
}
