body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8fafc;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 16px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px 0;
}

.header .dates {
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 15px;
}

.content {
    font-size: 1rem;
    line-height: 1.7;
}

.content h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 35px 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin: 25px 0 10px 0;
}

.content p {
    margin: 15px 0;
    color: #4b5563;
}

.content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content li {
    margin: 8px 0;
    color: #4b5563;
}

.table-container {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

th {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

td {
    padding: 15px;
    border-bottom: 1px solid #f1f5f9;
    color: #4b5563;
    vertical-align: top;
}

tr:last-child td {
    border-bottom: none;
}

tr:nth-child(even) {
    background: #f8fafc;
}

.consent-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.consent-required {
    background: #fef3c7;
    color: #92400e;
}

.consent-not-required {
    background: #d1fae5;
    color: #065f46;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.1), rgba(156, 39, 176, 0.1));
    border-left: 4px solid #e91e63;
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
}

.contact-info {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border: 1px solid #e5e7eb;
}

.contact-info h3 {
    margin-top: 0;
    color: #1a1a1a;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    margin-bottom: 20px;
}

.back-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.placeholder {
    background: #fef3c7;
    color: #92400e;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9em;
}

.cookie-settings-link {
    color: #e91e63;
    font-weight: 500;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(233, 30, 99, 0.3);
    background: rgba(233, 30, 99, 0.1);
    transition: all 0.3s ease;
}

.cookie-settings-link:hover {
    background: rgba(233, 30, 99, 0.2);
    text-decoration: none;
}

.browser-instructions {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.note-box {
    background: #fffbeb;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    font-style: italic;
    color: #92400e;
}

@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 30px 20px;
    }

    .header h1 {
        font-size: 2rem;
    }

    table {
        font-size: 0.8rem;
    }

    th, td {
        padding: 10px;
    }
}