* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #333;
    background: #f8f9fa;
}

.header-container {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 20px 0;
    text-align: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.policy-container {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.policy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e74c3c;
}

.policy-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.last-updated {
    color: #7f8c8d;
    font-size: 1rem;
}

.policy-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 4px solid #e74c3c;
}

.policy-content p {
    margin-bottom: 15px;
    text-align: justify;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.policy-content li {
    margin-bottom: 8px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.cookie-table th {
    background: #2c3e50;
    color: white;
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-table tr:nth-child(even) {
    background: #f8f9fa;
}

.cookie-type {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
}

.essential {
    background: #27ae60;
}

.functional {
    background: #3498db;
}

.analytics {
    background: #f39c12;
}

.marketing {
    background: #e74c3c;
}

.contact-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
}

.contact-info a {
    color: #fff;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 25px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.warning-box {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 5px solid #d35400;
}

.warning-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-box {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: center;
}

.highlight-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.process-steps {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 25px 0;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .policy-container {
        margin: 20px;
        padding: 40px 30px;
    }

    .policy-title {
        font-size: 2rem;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .contact-info a {
        font-size: 0.8rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 10px;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
}