/* style/gdpr.css */

/* General styling for the GDPR page */
.page-gdpr {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333; /* Dark gray for good readability on light backgrounds */
    background-color: #f8f9fa; /* Light background */
}

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

/* Hero Section */
.page-gdpr__hero {
    background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue gradient */
    color: #ffffff; /* White text for contrast */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-image {
    max-width: 250px;
    height: auto;
    margin-top: 30px;
    opacity: 0.8;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.page-gdpr__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
}

.page-gdpr__subtitle {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
    color: #e0e0e0;
}

/* Sections */
.page-gdpr__section {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
}

.page-gdpr__section--alt {
    background-color: #f0f4f8; /* Slightly different background for contrast */
}

.page-gdpr__heading {
    font-size: 2em;
    color: #007bff; /* Primary brand color for headings */
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.page-gdpr__section p {
    margin-bottom: 15px;
    color: #444;
}

.page-gdpr__section ul,
.page-gdpr__section ol {
    margin-left: 25px;
    margin-bottom: 15px;
    color: #444;
}

.page-gdpr__section ul li,
.page-gdpr__section ol li {
    margin-bottom: 8px;
}

.page-gdpr__section strong {
    color: #0056b3; /* Darker primary color for emphasis */
}

/* Grid for Data Collection section */
.page-gdpr__content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-gdpr__grid-item {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-gdpr__grid-item:hover {
    transform: translateY(-5px);
}

.page-gdpr__grid-item h3 {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.page-gdpr__grid-item h3 .page-gdpr__icon {
    font-size: 1.5em;
    margin-right: 10px;
    color: #ffc107; /* Accent color for icons */
}

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

/* Icons (simple placeholder, could be replaced with font-awesome or SVG) */
.page-gdpr__icon--data::before { content: '\1F6E1'; } /* Shield for data */
.page-gdpr__icon--usage::before { content: '\1F4CA'; } /* Chart for usage */
.page-gdpr__icon--technical::before { content: '\2699'; } /* Gear for technical */

/* Images within content sections */
.page-gdpr__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 25px;
    margin-bottom: 25px;
}

.page-gdpr__image--left {
    float: left;
    margin-right: 30px;
    width: 40%; /* Adjust width for desktop */
}

.page-gdpr__image--right {
    float: right;
    margin-left: 30px;
    width: 40%; /* Adjust width for desktop */
}

/* Clearfix for floated images */
.page-gdpr__section::after {
    content: "";
    display: table;
    clear: both;
}

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

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

/* Call to Action Button */
.page-gdpr__btn {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-align: center;
}

.page-gdpr__btn--primary {
    background-color: #ffc107; /* Accent color for primary button */
    color: #333; /* Dark text for contrast */
    border: 2px solid #ffc107;
}

.page-gdpr__btn--primary:hover {
    background-color: #e0a800; /* Darker accent on hover */
    color: #000;
    transform: translateY(-2px);
}

.page-gdpr__note {
    font-size: 0.9em;
    color: #666;
    margin-top: 20px;
    text-align: center;
}

/* Keywords */
.page-gdpr__keyword {
    font-weight: bold;
    color: #0056b3; /* Darker blue for keyword emphasis */
}

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

    .page-gdpr__subtitle {
        font-size: 1em;
    }

    .page-gdpr__heading {
        font-size: 1.6em;
    }

    .page-gdpr__image--left,
    .page-gdpr__image--right {
        float: none;
        width: 100%;
        margin: 25px 0;
    }

    .page-gdpr__content-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__btn {
        width: 100%;
        max-width: 300px;
    }
}

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

    .page-gdpr__title {
        font-size: 1.8em;
    }

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

    .page-gdpr__btn {
        width: 100%;
        max-width: 250px;
        padding: 10px 15px;
    }
}