.data-protection-page {
    padding: 80px 0;
    background: #f8f9fa;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-one);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--color-two) 100%);
    border-radius: 2px;
}

.data-protection-content {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-info-dp {
    background: #e8f4f8;
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info-dp h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.section {
    margin-bottom: 40px;
}

.section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-one);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-one);
    margin: 25px 0 15px 0;
}

.section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

p {
    font-size: 1rem;
    color: var(--color-three);
    line-height: 1.7;
    margin-bottom: 15px;
}

.rights-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.rights-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--color-three);
    line-height: 1.6;
}

.rights-list li:last-child {
    border-bottom: none;
}

.cookie-types ul {
    list-style: disc;
    margin-left: 20px;
}

.cookie-types li {
    margin-bottom: 8px;
    color: var(--color-three);
}

.highlight-box {
    background: #e8f4f8;
    padding: 25px;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin: 25px 0;
}

.highlight-box h4 {
    margin-top: 0;
}

.footer-note {
    font-size: 0.9rem;
    color: var(--color-three);
    font-style: italic;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

@media (max-width: 768px) {
    .data-protection-page {
        padding: 60px 0;
    }

    .data-protection-content {
        padding: 30px 20px;
    }

    .page-title {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .section h3 {
        font-size: 1.2rem;
    }
}