/*
 * Quorvianthrixor - Corporate Governance & Compliance Training
 * Futuristic Transparent UI Theme with Fixed Background Scroll
 * Version: 1.0.0
 * Last Updated: January 2026
 */

/* 
 * Table of Contents:
 * 1. CSS Reset & Base Styles
 * 2. Typography
 * 3. Layout & Containers
 * 4. Color Variables
 * 5. Header & Navigation
 * 6. Footer
 * 7. Buttons & Form Elements
 * 8. Hero Section
 * 9. Section Styles
 * 10. Cards & Content Blocks
 * 11. Cookie Consent
 * 12. Modal Components
 * 13. Utility Classes
 * 14. Animations
 * 15. Media Queries
 * 16. Page-Specific Styles
 * 17. Legal Pages
 * 18. Transparent UI Elements
 * 19. Fixed Background Effects
 * 20. Print Styles
 */



*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%; 
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #E6F1FF;
    background-color: #020A18;
    overflow-x: hidden;
    min-height: 100vh;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #64FFDA;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #FF5678;
}

ul, ol {
    list-style: none;
}



h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #E6F1FF;
}

h1 {
    font-size: 4.8rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 3.6rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.6rem;
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h2 {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 0.3rem;
    background: linear-gradient(90deg, rgba(100, 255, 218, 0), rgba(100, 255, 218, 1), rgba(100, 255, 218, 0));
}

.section-header p {
    font-size: 1.8rem;
    color: rgba(230, 241, 255, 0.7);
    max-width: 80rem;
    margin: 0 auto;
}

.section-subheader {
    text-align: center;
    margin: 4rem 0;
}

.section-subheader h3 {
    margin-bottom: 1rem;
}



.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 10rem 0;
    position: relative;
}

.alt-bg {
    background-color: rgba(10, 25, 47, 0.3);
}

main {
    min-height: 60vh;
    position: relative;
    z-index: 1;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1.5rem;
}

.col {
    padding: 0 1.5rem;
    flex: 1;
}



:root {
    --primary: #0A192F; 
    --secondary: #64FFDA; 
    --accent: #FF5678; 
    --background: #020A18; 
    --text: #E6F1FF; 
    --overlay: rgba(10, 25, 47, 0.7); 
    --glass: rgba(255, 255, 255, 0.05); 
    --glass-border: rgba(255, 255, 255, 0.1); 
    --success: #00C896; 
    --warning: #FFB800; 
    --danger: #FF4D6A; 
    --info: #5E9CFF; 
}



.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: all 0.4s ease;
    background: linear-gradient(to bottom, rgba(2, 10, 24, 0.9), rgba(2, 10, 24, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.site-header.scrolled {
    padding: 1rem 0;
    background: rgba(2, 10, 24, 0.9);
    box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: block;
    width: 20rem;
    transition: all 0.3s ease;
}

.logo img {
    width: 100%;
    height: auto;
}

.header-contact {
    display: flex;
    align-items: center;
    margin-right: 3rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-contact i {
    color: var(--secondary);
    margin-right: 1rem;
}

.header-contact span {
    font-size: 1.4rem;
    font-weight: 500;
}

.main-nav {
    margin-left: auto;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-item {
    margin: 0 1.5rem;
    position: relative;
}

.nav-item a {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text);
    padding: 0.5rem 0;
    position: relative;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-item a:hover::after,
.nav-item.active a::after {
    width: 100%;
}

.nav-item.active a {
    color: var(--secondary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 3rem;
    height: 2.4rem;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:first-child {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span:last-child {
    bottom: 0;
}

.mobile-menu-toggle.active span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:last-child {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 40rem;
    height: 100vh;
    background: rgba(2, 10, 24, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 6rem 3rem;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--text);
    font-size: 2.4rem;
    cursor: pointer;
}

.mobile-nav-list {
    margin-bottom: 4rem;
}

.mobile-nav-item {
    margin-bottom: 2rem;
}

.mobile-nav-item a {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text);
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-item.active a {
    color: var(--secondary);
}

.mobile-contact {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.mobile-contact-item i {
    color: var(--secondary);
    margin-right: 1.5rem;
    margin-top: 0.3rem;
}

.mobile-contact-item span {
    font-size: 1.4rem;
    line-height: 1.4;
}



.site-footer {
    background-color: rgba(2, 10, 24, 0.95);
    padding: 8rem 0 2rem;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 6rem;
}

.footer-brand {
    flex: 0 0 100%;
    max-width: 36rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: block;
    margin-bottom: 2rem;
    width: 20rem;
}

.footer-brand p {
    font-size: 1.5rem;
    color: rgba(230, 241, 255, 0.7);
}

.footer-contact,
.footer-links {
    flex: 1;
    min-width: 25rem;
    margin-bottom: 3rem;
}

.footer-contact h3,
.footer-links h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-contact h3::after,
.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4rem;
    height: 2px;
    background: var(--secondary);
}

.contact-list li,
.links-list li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.contact-list i {
    color: var(--secondary);
    margin-right: 1.5rem;
    margin-top: 0.3rem;
}

.contact-list span {
    font-size: 1.5rem;
    line-height: 1.4;
}

.links-list li a {
    font-size: 1.5rem;
    color: var(--text);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1.5rem;
}

.links-list li a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.links-list li a:hover {
    color: var(--secondary);
}

.links-list li a:hover::before {
    transform: translateX(0.5rem);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 1.4rem;
    color: rgba(230, 241, 255, 0.5);
    margin-bottom: 1.5rem;
}

.privacy-notice {
    font-size: 1.4rem;
    color: rgba(230, 241, 255, 0.5);
    margin-bottom: 1.5rem;
    max-width: 60rem;
}



.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    border-radius: 0.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    background: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    z-index: -1;
    transition: all 0.3s ease;
    opacity: 0;
}

.btn-primary {
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    color: var(--text);
    border: 1px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1.5rem rgba(100, 255, 218, 0.3);
    color: var(--text);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.btn-secondary:hover {
    background-color: rgba(100, 255, 218, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1.5rem rgba(100, 255, 218, 0.2);
    color: var(--secondary);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(230, 241, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--text);
    color: var(--text);
}

.btn-text {
    padding: 0;
    background: none;
    color: var(--secondary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.btn-text i {
    margin-left: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-text:hover {
    color: var(--secondary);
}

.btn-text:hover i {
    transform: translateX(0.5rem);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.6rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}


.form-group {
    margin-bottom: 2.5rem;
    position: relative;
}

label {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.4rem;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--secondary);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.1);
}

textarea {
    min-height: 12rem;
    resize: vertical;
}

.required {
    color: var(--accent);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 1.2rem;
    margin-top: 0.3rem;
}

.checkbox-group label {
    font-size: 1.4rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.form-actions {
    margin-top: 4rem;
    text-align: center;
}


input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.3rem;
    background-color: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

input[type="checkbox"]:checked {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary);
    font-size: 1.4rem;
}


.toggle-switch {
    position: relative;
    display: inline-block;
    width: 5rem;
    height: 2.6rem;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3.4rem;
    transition: .4s;
}

.toggle-switch label:before {
    position: absolute;
    content: "";
    height: 1.8rem;
    width: 1.8rem;
    left: 0.4rem;
    bottom: 0.4rem;
    background-color: white;
    border-radius: 50%;
    transition: .4s;
}

.toggle-switch input:checked + label {
    background-color: var(--secondary);
}

.toggle-switch input:checked + label:before {
    transform: translateX(2.4rem);
}

.toggle-switch.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.toggle-switch.disabled label {
    cursor: not-allowed;
}


.iti {
    width: 100%;
}

.iti__flag-container {
    z-index: 2;
}



.hero {
    height: 100vh;
    min-height: 70rem;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 0;
    margin-top: -9rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2, 10, 24, 0.8), rgba(2, 10, 24, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 80rem;
    padding: 4rem;
    background: rgba(10, 25, 47, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
    margin-bottom: 2rem;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: rgba(230, 241, 255, 0.9);
}

.hero-disclaimer {
    margin-top: 3rem;
    font-size: 1.4rem;
    color: rgba(230, 241, 255, 0.7);
}



.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(100, 255, 218, 0.1), transparent 70%);
    z-index: -1;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6rem;
    margin-bottom: 8rem;
}

.about-image {
    flex: 1;
    min-width: 30rem;
}

.about-image img {
    border-radius: 1rem;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.about-text {
    flex: 1;
    min-width: 30rem;
}

.about-text h3 {
    margin-bottom: 2.5rem;
    position: relative;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 5rem;
    height: 0.3rem;
    background: var(--secondary);
}

.feature-list {
    margin-top: 3rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.feature-list li i {
    color: var(--secondary);
    font-size: 2.4rem;
    margin-right: 2rem;
    margin-top: 0.3rem;
}

.feature-list li h4 {
    margin-bottom: 0.8rem;
}

.feature-list li p {
    margin-bottom: 0;
    color: rgba(230, 241, 255, 0.7);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.audience-card {
    background: rgba(10, 25, 47, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.audience-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border-color: rgba(100, 255, 218, 0.3);
}

.audience-icon {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 25, 47, 0.5);
    border-radius: 50%;
    margin-bottom: 2rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.audience-icon i {
    font-size: 2.4rem;
    color: var(--secondary);
}

.audience-card h4 {
    margin-bottom: 1.5rem;
}

.audience-card p {
    color: rgba(230, 241, 255, 0.7);
    margin-bottom: 0;
}

.core-offerings {
    position: relative;
    overflow: hidden;
}

.core-offerings::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(2, 10, 24, 0.8), transparent);
    z-index: -1;
}

.offerings-content {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    align-items: center;
}

.offerings-image {
    flex: 0 0 100%;
    max-width: 40rem;
    margin: 0 auto;
}

.offerings-image img {
    border-radius: 1rem;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.3);
}

.offerings-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.offering-card {
    background: rgba(10, 25, 47, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.offering-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border-color: rgba(100, 255, 218, 0.3);
}

.offering-icon {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 25, 47, 0.5);
    border-radius: 50%;
    margin-bottom: 2rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.offering-icon i {
    font-size: 2.4rem;
    color: var(--secondary);
}

.offering-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.offering-card p {
    color: rgba(230, 241, 255, 0.7);
    margin-bottom: 2rem;
}

.offering-features {
    padding-left: 2rem;
}

.offering-features li {
    position: relative;
    margin-bottom: 1rem;
    color: rgba(230, 241, 255, 0.7);
}

.offering-features li::before {
    content: '→';
    position: absolute;
    left: -2rem;
    color: var(--secondary);
}

.featured-programs {
    position: relative;
}

.programs-content {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    align-items: center;
}

.programs-image {
    flex: 0 0 100%;
    max-width: 40rem;
    margin: 0 auto;
}

.programs-image img {
    border-radius: 1rem;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.3);
}

.programs-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.program-card {
    background: rgba(10, 25, 47, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.program-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border-color: rgba(100, 255, 218, 0.3);
}

.program-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.program-meta span {
    font-size: 1.4rem;
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    background: rgba(10, 25, 47, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.program-date {
    color: var(--secondary);
}

.program-format,
.program-duration {
    color: rgba(230, 241, 255, 0.9);
}

.program-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.program-card p {
    color: rgba(230, 241, 255, 0.7);
    margin-bottom: 2rem;
}

.program-audience {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(10, 25, 47, 0.5);
    border-radius: 0.8rem;
}

.program-audience h4 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

.program-audience p {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.benefits {
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at right top, rgba(100, 255, 218, 0.1), transparent 70%);
    z-index: -1;
}

.benefits-content {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    align-items: center;
}

.benefits-image {
    flex: 0 0 100%;
    max-width: 40rem;
    margin: 0 auto;
}

.benefits-image img {
    border-radius: 1rem;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.3);
}

.benefits-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
}

.benefit-card {
    background: rgba(10, 25, 47, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border-color: rgba(100, 255, 218, 0.3);
}

.benefit-icon {
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 25, 47, 0.5);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--secondary);
}

.benefit-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(230, 241, 255, 0.7);
    margin-bottom: 0;
    font-size: 1.5rem;
}

.methodology {
    position: relative;
}

.methodology-content {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    align-items: center;
}

.methodology-image {
    flex: 0 0 100%;
    max-width: 40rem;
    margin: 0 auto;
}

.methodology-image img {
    border-radius: 1rem;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.3);
}

.methodology-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.methodology-step {
    display: flex;
    gap: 2rem;
}

.step-number {
    font-size: 4.8rem;
    font-weight: 700;
    color: rgba(100, 255, 218, 0.2);
    line-height: 1;
    min-width: 6rem;
}

.step-content h3 {
    margin-bottom: 1.5rem;
}

.step-content p {
    color: rgba(230, 241, 255, 0.7);
    margin-bottom: 1.5rem;
}

.step-details {
    padding-left: 2rem;
}

.step-details li {
    position: relative;
    margin-bottom: 1rem;
    color: rgba(230, 241, 255, 0.7);
}

.step-details li::before {
    content: '→';
    position: absolute;
    left: -2rem;
    color: var(--secondary);
}

.resources {
    position: relative;
    overflow: hidden;
}

.resources::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(2, 10, 24, 0.8), transparent);
    z-index: -1;
}

.resources-content {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    align-items: center;
}

.resources-image {
    flex: 0 0 100%;
    max-width: 40rem;
    margin: 0 auto;
}

.resources-image img {
    border-radius: 1rem;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.3);
}

.articles-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.article-card {
    background: rgba(10, 25, 47, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.article-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border-color: rgba(100, 255, 218, 0.3);
}

.article-meta {
    margin-bottom: 1rem;
}

.article-date {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--secondary);
}

.article-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.article-card p {
    color: rgba(230, 241, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.resources-cta {
    width: 100%;
    text-align: center;
    margin-top: 4rem;
}

.contact {
    position: relative;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    align-items: center;
}

.contact-image {
    flex: 0 0 100%;
    max-width: 40rem;
    margin: 0 auto;
}

.contact-image img {
    border-radius: 1rem;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.3);
}

.contact-form-container {
    flex: 1;
    min-width: 30rem;
}

.contact-form {
    background: rgba(10, 25, 47, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 4rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}



.service-section {
    padding: 8rem 0;
}

.service-content {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    align-items: center;
}

.service-content.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
    min-width: 30rem;
}

.service-text h2 {
    margin-bottom: 2.5rem;
    position: relative;
}

.service-text h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 5rem;
    height: 0.3rem;
    background: var(--secondary);
}

.service-text h3 {
    margin: 4rem 0 2rem;
    font-size: 2.2rem;
}

.service-text p {
    color: rgba(230, 241, 255, 0.8);
    margin-bottom: 1.5rem;
}

.service-features {
    margin: 3rem 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    min-width: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 25, 47, 0.5);
    border-radius: 50%;
    margin-right: 2rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--secondary);
}

.feature-content h4 {
    margin-bottom: 1rem;
}

.feature-content p {
    margin-bottom: 0;
}

.service-image {
    flex: 1;
    min-width: 30rem;
    max-width: 50rem;
}

.service-image img {
    border-radius: 1rem;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.3);
}

.deliverables-list,
.format-list,
.support-list {
    margin: 2rem 0;
    padding-left: 2rem;
}

.deliverables-list li,
.format-list li,
.support-list li {
    position: relative;
    margin-bottom: 1.2rem;
    color: rgba(230, 241, 255, 0.8);
}

.deliverables-list li::before,
.format-list li::before,
.support-list li::before {
    content: '→';
    position: absolute;
    left: -2rem;
    color: var(--secondary);
}

.format-label,
.support-label {
    color: var(--secondary);
    font-weight: 500;
}

.training-section {
    padding: 8rem 0;
}

.training-content {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
    align-items: center;
}

.training-content.reverse {
    flex-direction: row-reverse;
}

.training-image {
    flex: 1;
    min-width: 30rem;
    max-width: 50rem;
}

.training-image img {
    border-radius: 1rem;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.3);
}

.training-details {
    flex: 1;
    min-width: 30rem;
}

.training-intro {
    font-size: 1.8rem;
    color: rgba(230, 241, 255, 0.9);
    margin-bottom: 4rem;
}

.program-elements {
    margin: 3rem 0;
}

.program-element {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.element-icon {
    width: 5rem;
    height: 5rem;
    min-width: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 25, 47, 0.5);
    border-radius: 50%;
    margin-right: 2rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.element-icon i {
    font-size: 2rem;
    color: var(--secondary);
}

.element-content h4 {
    margin-bottom: 1rem;
}

.element-content p {
    margin-bottom: 0;
    color: rgba(230, 241, 255, 0.8);
}

.program-details-container {
    margin-top: 4rem;
    background: rgba(10, 25, 47, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.detail-item {
    margin-bottom: 2.5rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item h4 {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.detail-item h4 i {
    margin-right: 1rem;
    color: var(--secondary);
}

.detail-item p {
    color: rgba(230, 241, 255, 0.8);
    margin-bottom: 0;
}

.detail-item ul {
    padding-left: 2rem;
}

.detail-item ul li {
    position: relative;
    margin-bottom: 1rem;
    color: rgba(230, 241, 255, 0.8);
}

.detail-item ul li::before {
    content: '→';
    position: absolute;
    left: -2rem;
    color: var(--secondary);
}

.cta-section {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.8), rgba(2, 10, 24, 0.9));
    padding: 6rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-content {
    max-width: 80rem;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.8rem;
    color: rgba(230, 241, 255, 0.9);
    margin-bottom: 3rem;
}

.articles-section {
    padding: 8rem 0;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.article-item {
    background: rgba(10, 25, 47, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 4rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.article-item:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border-color: rgba(100, 255, 218, 0.3);
}

.article-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.article-summary {
    color: rgba(230, 241, 255, 0.8);
    margin-bottom: 2rem;
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6rem;
}

.pagination-current {
    font-size: 1.6rem;
    color: rgba(230, 241, 255, 0.7);
}

.pagination-next {
    display: inline-flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--secondary);
}

.pagination-next i {
    margin-left: 1rem;
    transition: transform 0.3s ease;
}

.pagination-next:hover i {
    transform: translateX(0.5rem);
}

.contact-info-section {
    padding: 8rem 0 4rem;
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
}

.contact-card {
    flex: 1;
    min-width: 25rem;
    max-width: 35rem;
    background: rgba(10, 25, 47, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 4rem 3rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border-color: rgba(100, 255, 218, 0.3);
}

.contact-icon {
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 25, 47, 0.5);
    border-radius: 50%;
    margin: 0 auto 2.5rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.contact-icon i {
    font-size: 3rem;
    color: var(--secondary);
}

.contact-card h3 {
    margin-bottom: 2rem;
}

.contact-card p {
    color: rgba(230, 241, 255, 0.8);
    margin-bottom: 1rem;
}

.map-section {
    padding: 4rem 0 8rem;
}

.map-container {
    height: 45rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.thanks-section {
    padding: 12rem 0;
    text-align: center;
}

.thanks-content {
    max-width: 70rem;
    margin: 0 auto;
    background: rgba(10, 25, 47, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 6rem 4rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.thanks-icon {
    width: 10rem;
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 25, 47, 0.5);
    border-radius: 50%;
    margin: 0 auto 3rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.thanks-icon i {
    font-size: 4rem;
    color: var(--secondary);
}

.thanks-content h1 {
    margin-bottom: 2.5rem;
}

.thanks-content p {
    font-size: 1.8rem;
    color: rgba(230, 241, 255, 0.9);
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 4rem 0;
}

.thanks-contact {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.thanks-contact p {
    font-size: 1.6rem;
}



.cookie-consent-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 40rem;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2.5rem;
    z-index: 9999;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-consent-banner.hidden {
    transform: translateY(20rem);
    display: none;
}

.cookie-consent-content h3 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.cookie-consent-content p {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: rgba(230, 241, 255, 0.8);
}

.cookie-consent-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-category {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.cookie-category-header h4 {
    margin-bottom: 0;
}

.cookie-category p {
    font-size: 1.4rem;
    color: rgba(230, 241, 255, 0.7);
}



.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 10, 24, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 100%;
    max-width: 60rem;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.3);
    transform: translateY(2rem);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    margin-bottom: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--secondary);
}

.modal-body {
    padding: 3rem;
}

.modal-footer {
    padding: 2rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: right;
}

#success-modal .modal-content {
    max-width: 50rem;
    text-align: center;
}

.success-icon {
    width: 8rem;
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 25, 47, 0.5);
    border-radius: 50%;
    margin: 0 auto 3rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.success-icon i {
    font-size: 3.5rem;
    color: var(--success);
}

#success-modal .modal-body p {
    font-size: 1.8rem;
    color: rgba(230, 241, 255, 0.9);
}



.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.mb-5 {
    margin-bottom: 5rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

.p-0 {
    padding: 0;
}

.p-1 {
    padding: 1rem;
}

.p-2 {
    padding: 2rem;
}

.p-3 {
    padding: 3rem;
}

.p-4 {
    padding: 4rem;
}

.p-5 {
    padding: 5rem;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}



@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(2rem);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-fadeIn {
    animation: fadeIn 1s ease forwards;
}

.animate-slideUp {
    animation: slideUp 0.8s ease forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}



@media (max-width: 1200px) {
    html {
        font-size: 58%;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 56%;
    }
    
    .header-contact {
        display: none;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .about-content,
    .offerings-content,
    .programs-content,
    .benefits-content,
    .methodology-content,
    .resources-content,
    .contact-content,
    .service-content,
    .service-content.reverse,
    .training-content,
    .training-content.reverse {
        flex-direction: column;
        gap: 4rem;
    }
    
    .about-image,
    .offerings-image,
    .programs-image,
    .benefits-image,
    .methodology-image,
    .resources-image,
    .contact-image,
    .service-image,
    .training-image {
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-brand,
    .footer-contact,
    .footer-links {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 54%;
    }
    
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 3rem;
    }
    
    section {
        padding: 8rem 0;
    }
    
    .hero {
        min-height: 60rem;
    }
    
    .hero-content {
        padding: 3rem;
    }
    
    .audience-grid,
    .offerings-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-number {
        min-width: auto;
    }
    
    .contact-cards {
        flex-direction: column;
    }
    
    .contact-card {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 52%;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .cookie-consent-banner {
        left: 1rem;
        right: 1rem;
        padding: 2rem;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
    }
    
    .cookie-consent-buttons .btn {
        width: 100%;
    }
    
    .contact-form {
        padding: 3rem 2rem;
    }
}



.page-header {
    height: 40rem;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 0;
    margin-top: -9rem;
}

.page-header > .container {
  margin-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2, 10, 24, 0.8), rgba(2, 10, 24, 0.7));
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem;
}

.page-header-content h1 {
    margin-bottom: 2rem;
}

.page-header-content p {
    font-size: 2rem;
    color: rgba(230, 241, 255, 0.9);
}

.legal-header {
    height: 30rem;
}

.article-content {
    padding: 8rem 0;
}

.article-header {
    margin-bottom: 5rem;
}

.article-header h1 {
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    color: rgba(230, 241, 255, 0.7);
}

.article-author {
    color: var(--secondary);
}

.article-body {
    max-width: 80rem;
    margin: 0 auto;
}

.article-intro {
    font-size: 2rem;
    color: rgba(230, 241, 255, 0.9);
    margin-bottom: 4rem;
    font-weight: 300;
    line-height: 1.6;
}

.article-body h2 {
    margin-top: 5rem;
    margin-bottom: 2.5rem;
    font-size: 2.8rem;
}

.article-body h3 {
    margin-top: 3.5rem;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.article-body h4 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.article-body p {
    margin-bottom: 2rem;
    color: rgba(230, 241, 255, 0.85);
}

.article-body ul,
.article-body ol {
    margin-bottom: 3rem;
    padding-left: 2.5rem;
}

.article-body ul li,
.article-body ol li {
    margin-bottom: 1rem;
    position: relative;
    color: rgba(230, 241, 255, 0.85);
}

.article-body ul li::before {
    content: '•';
    position: absolute;
    left: -2rem;
    color: var(--secondary);
}

.article-body ol {
    counter-reset: item;
}

.article-body ol li {
    counter-increment: item;
}

.article-body ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: -2.5rem;
    font-weight: 500;
    color: var(--secondary);
}



.legal-content {
    padding: 8rem 0;
}

.legal-document {
    max-width: 80rem;
    margin: 0 auto;
}

.legal-intro {
    margin-bottom: 5rem;
}

.legal-intro p {
    font-size: 1.8rem;
    color: rgba(230, 241, 255, 0.9);
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section h2 {
    font-size: 2.6rem;
    margin-bottom: 2.5rem;
}

.legal-section h3 {
    font-size: 2.2rem;
    margin: 3rem 0 2rem;
}

.legal-section h4 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
}

.legal-section p {
    color: rgba(230, 241, 255, 0.85);
    margin-bottom: 2rem;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 3rem;
    padding-left: 2.5rem;
}

.legal-section ul li,
.legal-section ol li {
    margin-bottom: 1rem;
    position: relative;
    color: rgba(230, 241, 255, 0.85);
}

.legal-section ul li::before {
    content: '•';
    position: absolute;
    left: -2rem;
    color: var(--secondary);
}

.legal-section ol {
    counter-reset: item;
}

.legal-section ol li {
    counter-increment: item;
}

.legal-section ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: -2.5rem;
    font-weight: 500;
    color: var(--secondary);
}

.contact-info {
    background: rgba(10, 25, 47, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem;
    margin: 3rem 0;
}

.contact-info p {
    margin-bottom: 1.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.5rem 0;
    font-size: 1.5rem;
}

.cookie-table th,
.cookie-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-table th {
    background: rgba(10, 25, 47, 0.5);
    font-weight: 500;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}



.glass-card {
    background: rgba(10, 25, 47, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
    border-color: rgba(100, 255, 218, 0.3);
}

.glass-button {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.4rem;
    padding: 1.2rem 2.4rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.3s ease;
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

.glass-input {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.4rem;
    padding: 1.2rem 1.5rem;
    font-size: 1.5rem;
    color: var(--text);
    transition: all 0.3s ease;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(100, 255, 218, 0.5);
    outline: none;
}



.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.overlay-gradient-top {
    position: relative;
}

.overlay-gradient-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20rem;
    background: linear-gradient(to bottom, rgba(2, 10, 24, 1), rgba(2, 10, 24, 0));
    z-index: 1;
    pointer-events: none;
}

.overlay-gradient-bottom {
    position: relative;
}

.overlay-gradient-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20rem;
    background: linear-gradient(to top, rgba(2, 10, 24, 1), rgba(2, 10, 24, 0));
    z-index: 1;
    pointer-events: none;
}



@media print {
    body {
        background: #fff;
        color: #000;
    }
    
    .site-header,
    .site-footer,
    .cookie-consent-banner,
    .modal {
        display: none;
    }
    
    main {
        margin: 0;
        padding: 0;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: #000;
        page-break-after: avoid;
    }
    
    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }
    
    img {
        max-width: 100% !important;
    }
    
    .article-content,
    .legal-content {
        padding: 0;
    }
}




.iti {
    width: 100%;
}