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

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

.page-gdpr-hero {
    background: linear-gradient(135deg, #003366, #1a4d80);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%23ffcc00" stroke-width="0.1"/></pattern><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.05;
    z-index: 0;
}

.page-gdpr-hero .page-gdpr-container {
    position: relative;
    z-index: 1;
}

.page-gdpr-title {
    font-size: 3.2em;
    margin-bottom: 10px;
    color: #FFCC00;
    font-weight: bold;
}

.page-gdpr-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

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

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

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

.page-gdpr-section-title {
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-gdpr-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFCC00;
    border-radius: 2px;
}

.page-gdpr-what-is-gdpr p,
.page-gdpr-data-collection p {
    font-size: 1.1em;
    color: #555;
    text-align: justify;
    margin-bottom: 20px;
}

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

.page-gdpr-right-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr-right-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-gdpr-right-item h3 {
    font-size: 1.4em;
    color: #003366;
    margin-bottom: 10px;
}

.page-gdpr-right-item p {
    color: #666;
    font-size: 0.95em;
}

.page-gdpr-data-collection ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-gdpr-data-collection ul li {
    background-color: #ffffff;
    border-left: 5px solid #FFCC00;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    font-size: 1.05em;
    color: #444;
}

.page-gdpr-data-collection ul li strong {
    color: #003366;
}

.page-gdpr-data-security-image,
.page-gdpr-contact-image {
    display: block;
    max-width: 800px;
    height: auto;
    margin: 40px auto 20px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr-contact p {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    margin-bottom: 15px;
}

.page-gdpr-link {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

.page-gdpr-btn {
    display: inline-block;
    background-color: #FFCC00;
    color: #003366;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
    border: 2px solid #FFCC00;
}

.page-gdpr-btn:hover {
    background-color: #003366;
    color: #FFCC00;
    transform: translateY(-3px);
    border-color: #003366;
}

.page-gdpr-contact .page-gdpr-btn {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr-title {
        font-size: 2.8em;
    }
    .page-gdpr-subtitle {
        font-size: 1.3em;
    }
    .page-gdpr-section-title {
        font-size: 2em;
    }
    .page-gdpr-rights-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-gdpr-hero {
        padding: 60px 0;
    }
    .page-gdpr-title {
        font-size: 2.2em;
    }
    .page-gdpr-subtitle {
        font-size: 1.1em;
    }
    .page-gdpr-section {
        padding: 40px 0;
    }
    .page-gdpr-section-title {
        font-size: 1.8em;
    }
    .page-gdpr-rights-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr-hero-image,
    .page-gdpr-security-image,
    .page-gdpr-contact-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .page-gdpr-hero {
        padding: 40px 0;
    }
    .page-gdpr-title {
        font-size: 1.8em;
    }
    .page-gdpr-subtitle {
        font-size: 1em;
    }
    .page-gdpr-section-title {
        font-size: 1.5em;
    }
    .page-gdpr-right-item {
        padding: 20px;
    }
    .page-gdpr-right-icon {
        width: 50px;
        height: 50px;
    }
    .page-gdpr-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}