/* style/gdpr.css */

/* Custom colors */
:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --color-card-bg: #11271B;
    --color-bg: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text-main); /* Light text for dark body background */
    background-color: var(--color-bg); /* Explicitly set page background to match assumed dark body */
}

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding for content */
    background-color: var(--color-deep-green); /* Darker background for hero */
    overflow: hidden;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 30px; /* Space between image and content */
    max-height: 600px; /* Limit hero image height */
}

.page-gdpr__hero-content {
    position: relative;
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-gdpr__description {
    font-size: 1.1em;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    min-width: 200px;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__btn-primary {
    background: var(--color-btn-gradient);
    color: var(--color-text-main);
    border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.4);
}

.page-gdpr__btn-secondary {
    background: var(--color-card-bg);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.page-gdpr__btn-secondary:hover {
    transform: translateY(-3px);
    background: var(--color-primary);
    color: var(--color-text-main);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.4);
}

/* Content Sections */
.page-gdpr__content-section {
    padding: 60px 20px;
    background-color: var(--color-bg);
    color: var(--color-text-main);
}

.page-gdpr__dark-section {
    background-color: var(--color-card-bg);
}

.page-gdpr__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-gdpr__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-gdpr__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--color-gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-gdpr p {
    margin-bottom: 1em;
    font-size: 1.05em;
    color: var(--color-text-secondary);
}

.page-gdpr strong {
    color: var(--color-text-main);
}

.page-gdpr a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr a:hover {
    color: var(--color-glow);
    text-decoration: underline;
}

.page-gdpr__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
}

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

.page-gdpr__principle-item {
    background-color: var(--color-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
}

.page-gdpr__principle-title {
    font-size: 1.5em;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.page-gdpr__right-card {
    background-color: var(--color-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-deep-green);
}

.page-gdpr__right-title {
    font-size: 1.4em;
    color: var(--color-gold);
    margin-bottom: 15px;
    font-weight: 600;
}

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

.page-gdpr__measure-item {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-border);
    background-color: var(--color-card-bg);
    color: var(--color-text-main);
}

.page-gdpr__measure-title {
    font-size: 1.5em;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-gdpr__link-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: var(--color-primary);
    color: var(--color-text-main);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.page-gdpr__link-button:hover {
    background: var(--color-secondary);
}


/* Video Section */
.page-gdpr__video-section {
    padding: 10px 20px 60px;
    background-color: var(--color-card-bg);
    text-align: center;
}

.page-gdpr__video-container {
    width: 100%; /* Desktop width: 100% with max-width */
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-gdpr__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__video-wrapper .page-gdpr__video-link,
.page-gdpr__video-wrapper .page-gdpr__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    cursor: pointer;
}

.page-gdpr__video-caption {
    margin-top: 20px;
    font-style: italic;
    color: var(--color-text-secondary);
}

/* Contact List */
.page-gdpr__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: center;
}