/* Page Container */
.agb-page {
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 25%, #f1f3f8 75%, #e8ecf4 100%);
    min-height: 100vh;
    padding: calc(var(--sections-vertical-spacing) * 1.5) 0;
}

/* Page Header */
.agb-header {
    text-align: center;
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 var(--horizontal-padding);
    margin-bottom: calc(var(--sections-vertical-spacing) * 2.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.agb-title {
    font-family: 'TexgyretermesRegular';
    font-weight: 500;
    font-size: clamp(36px, 4vw, 56px);
    color: var(--header-background-color);
    margin-bottom: 20px;
    position: relative;
}

.agb-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2b4670, transparent);
    border-radius: 2px;
}

.agb-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(16px, 2vw, 22px);
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Container */
.agb-content {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 var(--horizontal-padding);
}

/* Legal Section */
.legal-section {
    background: white;
    border-radius: 25px;
    padding: 50px 45px;
    box-shadow: 0 12px 40px rgba(34, 58, 94, 0.12);
    border: 1px solid rgba(34, 58, 94, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    margin-bottom: 40px;
}

.legal-section:nth-child(1) {
    animation-delay: 0.3s;
}
.legal-section:nth-child(2) {
    animation-delay: 0.4s;
}
.legal-section:nth-child(3) {
    animation-delay: 0.5s;
}
.legal-section:nth-child(4) {
    animation-delay: 0.6s;
}
.legal-section:nth-child(5) {
    animation-delay: 0.7s;
}
.legal-section:nth-child(6) {
    animation-delay: 0.8s;
}
.legal-section:nth-child(7) {
    animation-delay: 0.9s;
}
.legal-section:nth-child(8) {
    animation-delay: 1s;
}

.legal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--header-background-color), #2b4670, var(--header-background-color));
}

.legal-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(34, 58, 94, 0.18);
}

.legal-section:hover::before {
    height: 6px;
}


.section-title {
    font-family: 'TexgyretermesRegular';
    font-weight: 500;
    font-size: clamp(20px, 2.2vw, 26px);
    color: var(--header-background-color);
    margin-bottom: 20px;
    margin-top: 30px;
    position: relative;
}

.section-title:first-of-type {
    margin-top: 0;
}


.legal-text {
    text-align: justify;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 1.2vw, 17px);
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
    transition: all 0.3s ease;
}

.legal-text:last-child {
    margin-bottom: 0;
}

.legal-text:hover {
    color: #333;
}

.legal-text strong {
    color: var(--header-background-color);
    font-weight: 600;
}

.legal-text a {
    color: var(--header-background-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-text a:hover {
    color: #2b4670;
    border-bottom: 1px solid #2b4670;
}

/* Single Column Layout */
.single-column {
    max-width: 900px;
    margin: 0 auto;
}

/* Introduction Section */
.intro-section {
    background: white;
    border-radius: 25px;
    padding: 40px 35px;
    box-shadow: 0 10px 30px rgba(34, 58, 94, 0.1);
    border: 1px solid rgba(34, 58, 94, 0.06);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.25s forwards;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--header-background-color), #2b4670, var(--header-background-color));
}

/* Subsection styling */
.subsection {
    margin-left: 20px;
    margin-bottom: 15px;
    text-align: justify;
}

.subsection-number {
    color: var(--header-background-color);
    font-weight: 600;
    margin-right: 8px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .legal-section {
        padding: 40px 30px;
    }

    .intro-section {
        padding: 30px 25px;
    }

    .legal-text {
        text-align: justify;
    }

    .subsection {
        margin-left: 10px;
    }
}

@media screen and (max-width: 480px) {
    .legal-section {
        padding: 30px 25px;
    }

    .intro-section {
        padding: 25px 20px;
    }

    .agb-title::after {
        width: 180px;
    }
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
