/* Cookie Policy Page Styles */
.cookie-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.cookie-policy {
    background-color: var(--card-bg-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-policy h1 {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.last-updated {
    color: var(--secondary-text-color);
    margin-bottom: 2rem;
    font-style: italic;
}

.cookie-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-section:last-child {
    border-bottom: none;
}

.cookie-section h2 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-section p, 
.cookie-section li {
    line-height: 1.6;
    color: var(--secondary-text-color);
    margin-bottom: 0.8rem;
}

.cookie-section ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

/* Cookie Types */
.cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cookie-type {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.cookie-header {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
}

.cookie-header i {
    font-size: 1.5rem;
}

.cookie-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.essential {
    background-color: #4CAF50;
}

.analytics {
    background-color: #2196F3;
}

.marketing {
    background-color: #FF9800;
}

.cookie-content {
    padding: 1.5rem;
    background-color: var(--card-bg-color);
}

.cookie-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.cookie-content li {
    margin-bottom: 0.5rem;
}

/* Cookie Controls */
.cookie-controls {
    margin: 2rem 0;
}

.cookie-control {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--card-bg-color);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.control-label h3 {
    margin: 0 0 0.3rem;
    color: var(--text-color);
}

.control-label p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--secondary-text-color);
}

/* Switch styling */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--accent-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--accent-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Cookie Buttons */
.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid var(--accent-color);
}

.cookie-btn.primary {
    background-color: var(--accent-color);
    color: white;
}

.cookie-btn:not(.primary) {
    background-color: transparent;
    color: var(--text-color);
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Browser Instructions */
.browser-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.browser {
    background-color: var(--card-bg-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.browser i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.browser h3 {
    margin: 0.5rem 0 1rem;
    color: var(--text-color);
}

.browser ol {
    padding-left: 1.5rem;
    margin: 1rem 0 0;
}

.browser li {
    margin-bottom: 0.5rem;
    color: var(--secondary-text-color);
}

/* Contact Section - Redesigned */
.contact-section address {
    font-style: normal;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.589);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    line-height: 1.6;
}

.contact-section address p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
    color: #333;
}

.contact-section address p:last-child {
    margin-bottom: 0;
}

.contact-section address p::before {
    content: "•";
    color: #4a6cf7;
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .contact-section address {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .contact-section address p {
        font-size: 1rem;
    }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .cookie-container {
        padding: 1rem;
    }
    
    .cookie-policy {
        padding: 1.5rem;
    }
    
    .cookie-policy h1 {
        font-size: 1.8rem;
    }
    
    .cookie-section h2 {
        font-size: 1.3rem;
    }
    
    .cookie-types {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}