/* style/gdpr.css */

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

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

/* Hero Section */
.page-gdpr__hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.page-gdpr__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-gdpr__hero-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-gdpr__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid #e9ecef;
}

.page-gdpr__section:last-of-type {
    border-bottom: none;
}

.page-gdpr__section-title {
    font-size: 2em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-gdpr__intro p {
    font-size: 1.05em;
    text-align: justify;
    margin-bottom: 15px;
    color: #495057;
}

/* Principles Grid */
.page-gdpr__principles {
    background-color: #ffffff;
}

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

.page-gdpr__grid-item {
    background-color: #f1f7fe;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.page-gdpr__grid-item h3 {
    font-size: 1.4em;
    color: #007bff;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-gdpr__grid-item p {
    font-size: 0.95em;
    color: #555;
    text-align: justify;
}

.page-gdpr__icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* User Rights Section */
.page-gdpr__user-rights ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-gdpr__user-rights li {
    background-color: #fff;
    border-left: 5px solid #ffc107;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    color: #333;
    font-size: 1.0em;
}

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

/* Contact Section */
.page-gdpr__contact {
    text-align: center;
    background-color: #e9f5ff;
    padding-bottom: 80px;
}

.page-gdpr__contact p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #495057;
}

/* Links and Buttons */
.page-gdpr__link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

.page-gdpr__button {
    display: inline-block;
    background-color: #ffc107;
    color: #333;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-gdpr__button:hover {
    background-color: #e0a800;
    color: #000;
}

.page-gdpr__button--primary {
    background-color: #007bff;
    color: #ffffff;
}

.page-gdpr__button--primary:hover {
    background-color: #0056b3;
    color: #ffffff;
}

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

    .page-gdpr__hero-description {
        font-size: 1em;
    }

    .page-gdpr__section-title {
        font-size: 1.6em;
    }

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

    .page-gdpr__grid-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero {
        padding: 60px 0;
    }

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

    .page-gdpr__section {
        padding: 40px 0;
    }

    .page-gdpr__section-title {
        font-size: 1.4em;
    }

    .page-gdpr__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}