/* Cookies Page Specific Styles */
.cookies-page {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cookies-page h1 {
    color: #22c55e;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #22c55e;
    padding-bottom: 0.5rem;
}

.cookies-page h2 {
    color: #16a34a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.cookies-page p {
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1rem;
}

.cookies-page ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.cookies-page li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #4b5563;
}

.reset-button {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin: 1rem 0;
}

.reset-button:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #22c55e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #16a34a;
    text-decoration: underline;
}

/* Cookie status display */
.cookie-status {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
}

.status-accepted {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.status-rejected {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.status-none {
    background: #e0f2fe;
    color: #0c4a6e;
    border: 1px solid #bae6fd;
}

/* Contact items that can be copied */
.contact-copy {
    cursor: pointer;
    transition: color 0.3s ease;
}

.contact-copy:hover {
    color: #22c55e;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .cookies-page {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .cookies-page h1 {
        font-size: 1.8rem;
    }
    
    .cookies-page h2 {
        font-size: 1.3rem;
    }
    
    .reset-button {
        width: 100%;
        text-align: center;
    }
}