/* Cookie Page Design */
.cookie-main {
    padding: 100px 20px;
    background-color: #f8f9fa;
    min-height: 80vh;
    z-index: 1;
    position: relative;
}

.cookie-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Hero Style */
.cookie-hero {
    text-align: center;
    margin-bottom: 80px;
    animation: appleFadeIn 1s ease-out;
}

.cookie-badge {
    display: inline-block;
    background: #eef2f6;
    color: #004a99;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cookie-hero h1 {
    font-size: 3rem;
    color: #1d1d1f;
    max-width: 700px;
    margin: 0 auto 20px;
}

.cookie-hero p {
    font-size: 1.2rem;
    color: #86868b;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Design */
.cookie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.cookie-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
    border: 1px solid #f1f1f1;
    animation: appleFadeIn 1s ease-out forwards;
}

.cookie-card:hover {
    transform: translateY(-5px);
}

.cookie-card.highlight {
    border: 2px solid #004a99;
}

.cookie-card h3 {
    font-size: 1.3rem;
    color: #1d1d1f;
    margin-bottom: 15px;
}

.cookie-card p {
    color: #424245;
    line-height: 1.6;
    font-size: 1rem;
}

.status-tag {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.75rem;
    background: #E8F5E9;
    color: #2E7D32;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
}

/* Mobile */
@media (max-width: 768px) {
    .cookie-hero h1 { font-size: 2rem; }
}