/* style/gdpr.css */

.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

.page-gdpr-hero-section {
    background: linear-gradient(135deg, #007bff, #ffc107);
    color: #fff;
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr-hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr-hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.page-gdpr-hero-image {
    max-width: 80%;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-gdpr-content-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-gdpr-section-title {
    font-size: 2em;
    color: #007bff;
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid #ffc107;
    padding-bottom: 10px;
    text-align: center;
}

.page-gdpr-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
    text-align: justify;
}

.page-gdpr-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

.page-gdpr-principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr-principle-card {
    background-color: #f0f8ff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr-principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-gdpr-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.page-gdpr-card-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-gdpr-card-text {
    font-size: 0.95em;
    color: #555;
}

.page-gdpr-rights-list, .page-gdpr-implementation-list {
    list-style-type: disc;
    padding-left: 30px;
    margin-bottom: 30px;
}

.page-gdpr-rights-list li, .page-gdpr-implementation-list li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #444;
}

.page-gdpr-rights-list li strong {
    color: #007bff;
}

.page-gdpr-image-fullwidth {
    max-width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr-contact-info {
    background-color: #f0f8ff;
    border-left: 5px solid #007bff;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.page-gdpr-contact-info p {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333;
}

.page-gdpr-image-contact {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr-cta-section {
    text-align: center;
    background-color: #007bff;
    color: #fff;
    padding: 40px;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-gdpr-cta-text {
    font-size: 1.5em;
    margin-bottom: 25px;
    color: #fff;
}

.page-gdpr-button {
    display: inline-block;
    background-color: #ffc107;
    color: #000;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr-button:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    color: #000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr-hero-title {
        font-size: 2em;
    }

    .page-gdpr-hero-subtitle {
        font-size: 1em;
    }

    .page-gdpr-section-title {
        font-size: 1.8em;
    }

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

    .page-gdpr-cta-text {
        font-size: 1.2em;
    }

    .page-gdpr-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-gdpr-hero-section {
        padding: 60px 0 30px;
    }

    .page-gdpr-hero-title {
        font-size: 1.8em;
    }

    .page-gdpr-hero-image {
        max-width: 95%;
    }

    .page-gdpr-content-section {
        padding: 40px 0;
    }

    .page-gdpr-section-title {
        font-size: 1.5em;
    }

    .page-gdpr-text, .page-gdpr-rights-list li, .page-gdpr-implementation-list li, .page-gdpr-contact-info p {
        font-size: 0.95em;
    }

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

    .page-gdpr-card-title {
        font-size: 1.2em;
    }

    .page-gdpr-cta-section {
        padding: 30px;
    }
}