/* style/gdpr-data-protection-principles.css */

.page-gdpr-data-protection-principles {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-gdpr-data-protection-principles strong {
    color: #1A237E;
}

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

.page-gdpr-data-protection-principles__hero {
    background: linear-gradient(135deg, #1A237E 0%, #3F51B5 100%); /* Darker blue gradient */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr-data-protection-principles__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[IMAGE:hero_overlay_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 1;
}

.page-gdpr-data-protection-principles__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FFD700;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr-data-protection-principles__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #E0E0E0;
    position: relative;
    z-index: 2;
}

.page-gdpr-data-protection-principles__hero-image {
    max-width: 80%;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.page-gdpr-data-protection-principles__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.page-gdpr-data-protection-principles__section:last-of-type {
    border-bottom: none;
}

.page-gdpr-data-protection-principles__section-title {
    font-size: 2.5em;
    color: #1A237E;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-gdpr-data-protection-principles__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

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

.page-gdpr-data-protection-principles__principles {
    background-color: #fff;
}

.page-gdpr-data-protection-principles__principle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    padding: 30px;
    background-color: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr-data-protection-principles__principle-title {
    font-size: 1.8em;
    color: #1A237E;
    margin-bottom: 15px;
    text-align: center;
}

.page-gdpr-data-protection-principles__principle-item p {
    font-size: 1.05em;
    text-align: justify;
    color: #555;
    max-width: 800px;
}

.page-gdpr-data-protection-principles__principle-image {
    max-width: 100%;
    height: auto;
    margin-top: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-gdpr-data-protection-principles__user-rights .page-gdpr-data-protection-principles__list,
.page-gdpr-data-protection-principles__security-measures .page-gdpr-data-protection-principles__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-gdpr-data-protection-principles__user-rights .page-gdpr-data-protection-principles__list li,
.page-gdpr-data-protection-principles__security-measures .page-gdpr-data-protection-principles__list li {
    background-color: #e8eaf6; /* Light indigo background */
    padding: 15px 25px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    color: #1A237E;
    font-size: 1.05em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.page-gdpr-data-protection-principles__user-rights .page-gdpr-data-protection-principles__list li strong,
.page-gdpr-data-protection-principles__security-measures .page-gdpr-data-protection-principles__list li strong {
    color: #1A237E;
    margin-right: 10px;
    flex-shrink: 0;
}

.page-gdpr-data-protection-principles__user-rights-image {
    display: block;
    max-width: 90%;
    height: auto;
    margin: 40px auto 0;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.page-gdpr-data-protection-principles__contact p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.page-gdpr-data-protection-principles__contact .page-gdpr-data-protection-principles__list {
    text-align: center;
    list-style: none;
    padding: 0;
}

.page-gdpr-data-protection-principles__contact .page-gdpr-data-protection-principles__list li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #333;
}

.page-gdpr-data-protection-principles__link {
    color: #1A237E;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-gdpr-data-protection-principles__link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-gdpr-data-protection-principles__conclusion {
    background-color: #1A237E;
    color: #E0E0E0;
    text-align: center;
    padding: 80px 0;
}

.page-gdpr-data-protection-principles__conclusion .page-gdpr-data-protection-principles__section-title {
    color: #FFD700;
    margin-bottom: 30px;
}

.page-gdpr-data-protection-principles__conclusion .page-gdpr-data-protection-principles__section-title::after {
    background-color: #FFD700;
}

.page-gdpr-data-protection-principles__conclusion p {
    font-size: 1.15em;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr-data-protection-principles__conclusion strong {
    color: #FFD700;
}

.page-gdpr-data-protection-principles__btn {
    display: inline-block;
    background-color: #FFD700;
    color: #1A237E;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-gdpr-data-protection-principles__btn:hover {
    background-color: #e5c100;
    color: #0d123e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr-data-protection-principles__hero {
        padding: 60px 0;
    }

    .page-gdpr-data-protection-principles__hero-title {
        font-size: 2.5em;
    }

    .page-gdpr-data-protection-principles__hero-subtitle {
        font-size: 1.2em;
    }

    .page-gdpr-data-protection-principles__section-title {
        font-size: 2em;
    }

    .page-gdpr-data-protection-principles__principle-title {
        font-size: 1.5em;
    }

    .page-gdpr-data-protection-principles__principle-item {
        padding: 20px;
    }

    .page-gdpr-data-protection-principles__user-rights .page-gdpr-data-protection-principles__list li,
    .page-gdpr-data-protection-principles__security-measures .page-gdpr-data-protection-principles__list li {
        padding: 10px 15px;
        font-size: 1em;
    }

    .page-gdpr-data-protection-principles__conclusion p {
        font-size: 1em;
    }

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

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

    .page-gdpr-data-protection-principles__hero-subtitle {
        font-size: 1em;
    }

    .page-gdpr-data-protection-principles__section-title {
        font-size: 1.8em;
    }

    .page-gdpr-data-protection-principles__principle-title {
        font-size: 1.3em;
    }

    .page-gdpr-data-protection-principles__hero-image {
        max-width: 95%;
    }
}