.gdpr-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.gdpr-page h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.gdpr-page h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0891b2, #06b6d4);
    border-radius: 2px;
}

.gdpr-page .last-updated {
    color: #2a303a;
    font-size: 14px;
    margin-bottom: 30px;
    display: block;
}

.gdpr-page .content-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.gdpr-page .intro-text {
    font-size: 17px;
    color: #374151;
    margin-bottom: 20px;
    line-height: 1.7;
}

.gdpr-page .intro-text a {
    color: #0891b2;
    text-decoration: none;
    font-weight: 500;
}

.gdpr-page .intro-text a:hover {
    text-decoration: underline;
}

.gdpr-page .highlight-box {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 12px;
    margin: 25px 0;
    font-size: 16px;
    font-weight: 500;
}

.gdpr-page h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 35px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0f2fe;
    display: flex;
    align-items: center;
    gap: 12px;
}

.gdpr-page h2 .section-num {
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.gdpr-page h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 25px 0 15px;
}

.gdpr-page ul {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.gdpr-page ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #374151;
    line-height: 1.7;
}

.gdpr-page ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #0891b2, #06b6d4);
    border-radius: 50%;
}

.gdpr-page .notice {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 16px 20px;
    border-radius: 0 10px 10px 0;
    margin: 20px 0;
    color: #92400e;
    font-size: 15px;
}

.gdpr-page .notice.info {
    background: #e0f2fe;
    border-left-color: #0891b2;
    color: #0c4a6e;
}

.gdpr-page .notice.success {
    background: #d1fae5;
    border-left-color: #10b981;
    color: #065f46;
}

/* Data table */
.gdpr-page .data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.gdpr-page .data-table th {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: white;
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.gdpr-page .data-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    font-size: 15px;
}

.gdpr-page .data-table tr:last-child td {
    border-bottom: none;
}

.gdpr-page .data-table tr:hover td {
    background: #f9fafb;
}

/* Rights cards */
.gdpr-page .rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 25px 0;
}

.gdpr-page .right-card {
    background: white;
    list-style: none;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #0891b2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gdpr-page .right-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.gdpr-page .right-card h4 {
    color: #1a1a2e;
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gdpr-page .right-card h4 svg {
    color: #0891b2;
    flex-shrink: 0;
}

.gdpr-page .right-card .article {
    color: #244750;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gdpr-page .right-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

/* Contact box */
.gdpr-page .contact-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: white;
    padding: 30px;
    border-radius: 16px;
    margin: 30px 0;
    text-align: center;
}

.gdpr-page .contact-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

.gdpr-page .contact-box p {
    margin-bottom: 10px;
    opacity: 0.8;
    color: white;
}

.gdpr-page .contact-box a {
    color: #06b6d4;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.gdpr-page .contact-box a:hover {
    text-decoration: underline;
}

/* Timeline box */
.gdpr-page .timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.gdpr-page .timeline-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.gdpr-page .timeline-item .days {
    font-size: 36px;
    font-weight: 700;
    color: #0891b2;
    line-height: 1;
}

.gdpr-page .timeline-item .days span {
    font-size: 16px;
    font-weight: 400;
    color: #1a1a2e;
}

.gdpr-page .timeline-item .label {
    color: #6b7280;
    font-size: 14px;
    margin-top: 8px;
}

/* Security badges */
.gdpr-page .security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 25px 0;
}

.gdpr-page .security-item {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.gdpr-page .security-item svg {
    width: 32px;
    height: 32px;
    color: #059669;
    margin-bottom: 10px;
}

.gdpr-page .security-item p {
    color: #065f46;
    font-size: 14px;
    font-weight: 500;
}

/* Data categories */
.gdpr-page .data-category {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
}

.gdpr-page .data-category h4 {
    color: #1a1a2e;
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gdpr-page .data-category h4 svg {
    color: #0891b2;
}

.gdpr-page .data-category ul {
    margin: 0;
    columns: 2;
    column-gap: 30px;
}

.gdpr-page .data-category ul li {
    break-inside: avoid;
}

@media (max-width: 768px) {
    .gdpr-page {
        padding: 20px 15px;
    }

    .gdpr-page h1 {
        font-size: 32px;
    }

    .gdpr-page .content-card {
        padding: 25px 20px;
    }

    .gdpr-page h2 {
        font-size: 20px;
    }

    .gdpr-page .rights-grid {
        grid-template-columns: 1fr;
    }

    .gdpr-page .data-category ul {
        columns: 1;
    }

    .gdpr-page .data-table {
        font-size: 14px;
    }

    .gdpr-page .data-table th,
    .gdpr-page .data-table td {
        padding: 10px 12px;
    }
}