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

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

.page-gdpr-hero {
    background: linear-gradient(135deg, #1A2B4C, #3A506B);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

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

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

.page-gdpr-button {
    display: inline-block;
    background-color: #FF8C00;
    color: #1A2B4C;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr-button:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
}

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

.page-gdpr-content-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}

.page-gdpr-main-article h2 {
    color: #1A2B4C;
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FF8C00;
    padding-bottom: 10px;
}

.page-gdpr-main-article h3 {
    color: #1A2B4C;
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-gdpr-main-article p {
    margin-bottom: 15px;
    color: #444;
}

.page-gdpr-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #444;
}

.page-gdpr-list li {
    margin-bottom: 8px;
}

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

.page-gdpr-link {
    color: #FF8C00;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.page-gdpr-cta-banner {
    background-color: #1A2B4C;
    color: #ffffff;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    margin-top: 50px;
}

.page-gdpr-cta-text {
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr-cta-button {
    background-color: #FF8C00;
    color: #1A2B4C;
    font-size: 1.1em;
    padding: 15px 30px;
}

.page-gdpr-cta-button:hover {
    background-color: #e67e00;
}

.page-gdpr-sidebar {
    padding-top: 40px;
}

.page-gdpr-sidebar-card {
    background-color: #f0f0f0;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-gdpr-sidebar-title {
    color: #1A2B4C;
    font-size: 1.6em;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.page-gdpr-sidebar-button {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.page-gdpr-related-articles {
    list-style: none;
    padding: 0;
}

.page-gdpr-related-articles li {
    margin-bottom: 10px;
}

.page-gdpr-related-articles li a {
    color: #1A2B4C;
    text-decoration: none;
    font-weight: 600;
}

.page-gdpr-related-articles li a:hover {
    color: #FF8C00;
    text-decoration: underline;
}

.page-gdpr-floating-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #FF8C00;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: page-gdpr-pulse 2s infinite;
}

.page-gdpr-floating-promo-button {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: #1A2B4C;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
}

.page-gdpr-floating-promo-icon {
    font-size: 1.5em;
    margin-right: 10px;
}

@keyframes page-gdpr-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-gdpr-content-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr-sidebar {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .page-gdpr-hero-title {
        font-size: 2em;
    }
    .page-gdpr-hero-subtitle {
        font-size: 1em;
    }
    .page-gdpr-main-article h2 {
        font-size: 1.8em;
    }
    .page-gdpr-main-article h3 {
        font-size: 1.3em;
    }
    .page-gdpr-cta-text {
        font-size: 1.5em;
    }
    .page-gdpr-floating-promo {
        bottom: 15px;
        right: 15px;
    }
    .page-gdpr-floating-promo-button {
        padding: 8px 15px;
        font-size: 1em;
    }
    .page-gdpr-floating-promo-icon {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-gdpr-hero {
        padding: 60px 0;
    }
    .page-gdpr-hero-title {
        font-size: 1.6em;
    }
    .page-gdpr-hero-subtitle {
        font-size: 0.9em;
    }
    .page-gdpr-content-section {
        padding: 40px 0;
    }
    .page-gdpr-main-article h2 {
        font-size: 1.5em;
    }
    .page-gdpr-main-article h3 {
        font-size: 1.2em;
    }
    .page-gdpr-cta-banner {
        padding: 30px;
    }
    .page-gdpr-cta-text {
        font-size: 1.2em;
    }
    .page-gdpr-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr-floating-promo {
        bottom: 10px;
        right: 10px;
    }
    .page-gdpr-floating-promo-button {
        padding: 6px 12px;
        font-size: 0.9em;
    }
    .page-gdpr-floating-promo-icon {
        font-size: 1em;
        margin-right: 5px;
    }
}