:root {
    --primary-color: #FF8C1A;
    --secondary-color: #FFA53A;
    --card-bg: #17191F;
    --body-bg-custom: #0D0E12;
    --text-main: #FFF3E6;
    --border-color: #A84F0C;
    --glow-color: #FFB04D;
    --deep-orange: #D96800;
    --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    --light-text-color: #ffffff;
    --dark-text-color: #333333;
    --light-bg-color: #ffffff;
    --medium-gray-bg: #f5f5f5;
}

.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--body-bg-custom);
}

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

.page-gdpr__section {
    padding: 60px 0;
    position: relative;
}

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px;
    background-color: var(--body-bg-custom);
}

.page-gdpr__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-gdpr__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-gdpr__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-gdpr__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: var(--text-main);
}

.page-gdpr__hero-content h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.page-gdpr__hero-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-main);
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: var(--light-text-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.page-gdpr__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.page-gdpr__cta-button--small {
    padding: 12px 25px;
    font-size: 16px;
    margin-top: 30px;
}

.page-gdpr__intro-section,
.page-gdpr__principles-section,
.page-gdpr__security-section,
.page-gdpr__contact-section,
.page-gdpr__faq-section {
    background-color: var(--body-bg-custom);
    color: var(--text-main);
}

.page-gdpr__section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-gdpr__section h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-gdpr__text-block {
    margin-top: 30px;
}

.page-gdpr__text-block h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-gdpr__text-block p,
.page-gdpr__text-block li,
.page-gdpr p,
.page-gdpr li {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.page-gdpr ul {
    list-style: disc inside;
    padding-left: 20px;
    margin-bottom: 20px;
}

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

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

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

.page-gdpr__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    object-fit: cover;
}

.page-gdpr__image--left {
    float: left;
    margin-right: 30px;
    max-width: 45%;
}

.page-gdpr__image--right {
    float: right;
    margin-left: 30px;
    max-width: 45%;
}

.page-gdpr__dark-section {
    background: var(--card-bg);
    color: var(--light-text-color);
}
.page-gdpr__dark-section h2,
.page-gdpr__dark-section h3 {
    color: var(--secondary-color);
}
.page-gdpr__dark-section p,
.page-gdpr__dark-section li {
    color: var(--light-text-color);
}

.page-gdpr__light-bg {
    background: var(--medium-gray-bg);
    color: var(--dark-text-color);
}
.page-gdpr__light-bg h2,
.page-gdpr__light-bg h3 {
    color: var(--primary-color);
}
.page-gdpr__light-bg p,
.page-gdpr__light-bg li,
.page-gdpr__light-bg a {
    color: var(--dark-text-color);
}
.page-gdpr__light-bg a:hover {
    color: var(--deep-orange);
}

.page-gdpr__contact-info {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-align: center;
}
.page-gdpr__contact-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-main);
}
.page-gdpr__contact-info a {
    color: var(--secondary-color);
    font-weight: bold;
}
.page-gdpr__light-bg .page-gdpr__contact-info {
    background: var(--light-bg-color);
    color: var(--dark-text-color);
    border: 1px solid #e0e0e0;
}
.page-gdpr__light-bg .page-gdpr__contact-info p {
    color: var(--dark-text-color);
}
.page-gdpr__light-bg .page-gdpr__contact-info a {
    color: var(--primary-color);
}

.page-gdpr__faq-list {
    margin-top: 40px;
}

details.page-gdpr__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    color: var(--text-main);
}
details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    background: var(--card-bg);
    color: var(--text-main);
}
details.page-gdpr__faq-item summary.page-gdpr__faq-question::-webkit-details-marker {
    display: none;
}
details.page-gdpr__faq-item summary.page-gdpr__faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}
.page-gdpr__faq-qtext {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--secondary-color);
}
.page-gdpr__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}
details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 20px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 0 5px 5px;
    color: var(--text-main);
}
details.page-gdpr__faq-item .page-gdpr__faq-answer p {
    color: var(--text-main);
}

@media (max-width: 992px) {
    .page-gdpr__image--left,
    .page-gdpr__image--right {
        float: none;
        margin: 30px auto;
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .page-gdpr__section {
        padding: 40px 0;
    }

    .page-gdpr__container {
        padding: 0 15px;
    }

    .page-gdpr__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-gdpr__hero-content h1 {
        font-size: 1.8rem;
    }

    .page-gdpr__hero-content p {
        font-size: 1rem;
    }

    .page-gdpr__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    .page-gdpr__cta-button--small {
        padding: 10px 20px;
        font-size: 14px;
    }

    .page-gdpr__section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .page-gdpr__text-block h3 {
        font-size: 1.2rem;
    }

    .page-gdpr p,
    .page-gdpr li {
        font-size: 0.95rem;
    }

    .page-gdpr__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        float: none;
        margin: 20px auto;
    }

    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    details.page-gdpr__faq-item summary.page-gdpr__faq-question {
        padding: 15px;
    }
    .page-gdpr__faq-qtext {
        font-size: 15px;
    }
    details.page-gdpr__faq-item .page-gdpr__faq-answer {
        padding: 0 15px 15px;
    }
    .page-gdpr__contact-info {
        padding: 15px;
    }
}

.page-gdpr__contrast-fix {
  background: var(--light-bg-color) !important;
  color: var(--dark-text-color) !important;
  border: 1px solid #e0e0e0 !important;
}

.page-gdpr__text-contrast-fix {
  color: var(--dark-text-color) !important;
  text-shadow: none !important;
}