/* Cookie Policy Specific Styles */
.cookies-content {
    padding: 120px 0 80px;
    background: white;
}

.cookies-content h1 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.cookies-content h2 {
    color: #667eea;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.cookies-content h3 {
    color: #333;
    margin: 1.5rem 0 0.5rem;
    font-size: 1.2rem;
}

.cookies-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #666;
}

.cookies-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.cookies-content li {
    margin-bottom: 0.5rem;
    color: #666;
}

.cookies-content .last-updated {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #667eea;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #764ba2;
}

/* Desktop Table Styles */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-size: 0.5rem; /* Much smaller font size for cookie-table */
}

.cookie-table th {
    background: #667eea;
    color: white;
    padding: 0.5rem; /* Reduced padding */
    text-align: left;
    font-weight: 600;
    font-size: 0.7rem; /* Even smaller for headers */
}

.cookie-table td {
    padding: 0.5rem; /* Reduced padding */
    border-bottom: 1px solid #e9ecef;
    font-size: 0.65rem; /* Very small text for content */
}

.cookie-table tr:hover {
    background: #f8f9fa;
}

/* Mobile Card Styles */
.cookie-cards {
    display: none; /* Hidden by default on desktop */
}

.cookie-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cookie-card-header {
    background: #667eea;
    color: white;
    padding: 0.75rem;
    margin: -1rem -1rem 1rem -1rem;
    border-radius: 8px 8px 0 0;
    font-weight: 600;
}

.cookie-card-content {
    display: grid;
    gap: 0.5rem;
}

.cookie-card-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.cookie-card-label {
    font-weight: 600;
    color: #333;
    min-width: 80px;
}

.cookie-card-value {
    color: #666;
    text-align: right;
    flex: 1;
    margin-left: 1rem;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .cookie-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 0.4rem; /* Much smaller on tablets */
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.4rem; /* Reduced padding */
        min-width: 100px; /* Reduced minimum width */
    }
    
    .cookie-table th:first-child,
    .cookie-table td:first-child {
        min-width: 120px; /* Reduced minimum width */
    }
    
    .cookie-table th:nth-child(2),
    .cookie-table td:nth-child(2) {
        min-width: 150px; /* Reduced minimum width */
    }
}

/* Mobile Layout - Hide table, show cards */
@media (max-width: 480px) {
    .cookie-table {
        display: none !important; /* Force hide table on mobile */
    }
    
    .cookie-cards {
        display: block !important; /* Force show cards on mobile */
    }
}

/* Desktop Layout - Show table, hide cards */
@media (min-width: 481px) {
    .cookie-table {
        display: table;
    }
    
    .cookie-cards {
        display: none;
    }
} 