/* 1. Reduce spacing at the very top of the main container */
.cookie-main {
    padding-top: 10px; /* Minimal space below the header */
}

.cookie-container {
    max-width: 1200px;
    margin: 50px auto;
}

/* 2. Adjust Hero section to pull content upward */
.cookie-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 0;      /* Removes internal top padding */
    margin-top: -20px;   /* Pulls the icon closer to the navigation */
}

/* 3. Set the icon to your requested 400px height */
.cookie-icon {
    height: 400px !important; 
    width: auto;
    margin-bottom: 20px;
    object-fit: contain;
}

/* 4. Ensure the badge and text follow correctly */
.cookie-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #f4f4f4;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #333;
}

.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; }
}