/* style/gdpr.css */

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

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

/* Hero Section */
.page-gdpr__hero-section {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

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

/* Content Section */
.page-gdpr__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.page-gdpr__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.page-gdpr__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Features/Principles section */
.page-gdpr__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr__feature-item {
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #ffc107;
}

.page-gdpr__feature-title {
    font-size: 1.5em;
    color: #0056b3;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-gdpr__feature-text {
    color: #555;
    font-size: 1em;
}

/* List styling */
.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-gdpr__list li {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 15px 20px;
    font-size: 1.1em;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 40px;
}

.page-gdpr__list li:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

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

.page-gdpr__list li::before {
    content: '✔';
    color: #ffc107;
    font-size: 1.2em;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Call to action buttons */
.page-gdpr__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-gdpr__btn--primary {
    background-color: #ffc107;
    color: #333;
    border: 2px solid #ffc107;
}

.page-gdpr__btn--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #111;
}

.page-gdpr__btn--secondary {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.page-gdpr__btn--secondary:hover {
    background-color: #007bff;
    color: #ffffff;
}

.page-gdpr__cta-buttons {
    text-align: center;
    margin-top: 50px;
    padding-bottom: 40px;
}

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

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

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

    .page-gdpr__btn {
        width: 100%;
        display: block;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 2em;
    }

    .page-gdpr__hero-description,
    .page-gdpr__paragraph,
    .page-gdpr__feature-text,
    .page-gdpr__list li {
        font-size: 0.95em;
    }
}