:root {
    --pure-black: #000000;
    --neon-green: #00FF41;
    --neon-pink: #FF006E;
    --electric-blue: #00D9FF;
    --dark-gray: #0A0A0A;
    --charcoal: #1A1A1A;
    --deep-gray: #2A2A2A;
    --white: #FFFFFF;
    --light-gray: #B0B0B0;
    --neon-glow: rgba(0, 255, 65, 0.6);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--pure-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--neon-green);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--electric-blue);
    text-shadow: 0 0 10px var(--neon-glow);
}

.navbar-experimental {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--deep-gray);
    padding: 1rem 0;
    z-index: 1000;
}

.nav-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--neon-glow));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-link {
    position: relative;
    color: var(--light-gray);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-green), var(--electric-blue));
    transition: width 0.3s ease;
}

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

.nav-link.active {
    color: var(--neon-green);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    color: var(--light-gray);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border: 1px solid var(--deep-gray);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--neon-green);
    border-color: var(--neon-green);
    box-shadow: 0 0 15px var(--neon-glow);
}

.lang-separator {
    color: var(--deep-gray);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.jarallax {
    position: relative;
    z-index: 0;
}

.jarallax-img {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px var(--neon-glow);
}

.glitch {
    position: relative;
    animation: glitch 3s infinite;
}

@keyframes glitch {
    0%, 100% {
        text-shadow: 0 0 30px var(--neon-glow);
    }
    25% {
        text-shadow: -2px 0 var(--neon-pink), 2px 0 var(--electric-blue);
    }
    50% {
        text-shadow: 2px 0 var(--neon-pink), -2px 0 var(--electric-blue);
    }
    75% {
        text-shadow: 0 0 30px var(--neon-glow);
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--light-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-neon {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--neon-green);
    color: var(--pure-black);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--neon-glow);
}

.btn-neon:hover {
    background: var(--electric-blue);
    color: var(--pure-black);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
    transform: translateY(-2px);
}

.btn-outline-neon {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--neon-green);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--neon-green);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-neon:hover {
    background: var(--neon-green);
    color: var(--pure-black);
    box-shadow: 0 0 20px var(--neon-glow);
    transform: translateY(-2px);
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.iti {
  width: 100%;
}

.intro-section {
    padding: 8rem 0;
    background-color: var(--dark-gray);
}

.section-header {
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    color: var(--neon-green);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--neon-green);
    border-radius: 4px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.intro-card {
    background: var(--charcoal);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--deep-gray);
    transition: all 0.3s ease;
}

.intro-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.2);
    transform: translateY(-5px);
}

.intro-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neon-green), var(--electric-blue));
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--pure-black);
}

.intro-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.intro-card p {
    color: var(--light-gray);
    line-height: 1.7;
}

.articles-section {
    padding: 8rem 0;
    background-color: var(--pure-black);
}

.article-preview {
    background: var(--charcoal);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--deep-gray);
    transition: all 0.3s ease;
    height: 100%;
}

.article-preview:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.2);
    transform: translateY(-5px);
}

.article-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-preview:hover .article-image img {
    transform: scale(1.1);
}

.article-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--neon-green);
    color: var(--pure-black);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.article-content {
    padding: 2rem;
}

.article-content h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.article-content p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-green);
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-link:hover {
    gap: 1rem;
}

.quiz-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--pure-black) 100%);
}

.quiz-container {
    background: var(--charcoal);
    border: 1px solid var(--deep-gray);
    border-radius: 8px;
    padding: 3rem;
    margin-top: 2rem;
}

.quiz-question {
    display: none;
}

.quiz-question.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quiz-question h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.quiz-options {
    display: grid;
    gap: 1rem;
}

.quiz-option {
    background: var(--dark-gray);
    border: 2px solid var(--deep-gray);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.quiz-option:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
    transform: translateX(10px);
}

.quiz-progress {
    margin-top: 2rem;
    height: 4px;
    background: var(--deep-gray);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-green), var(--electric-blue));
    width: 0;
    transition: width 0.5s ease;
}

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

.result-content {
    padding: 2rem;
}

.result-icon {
    font-size: 4rem;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
}

.result-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.result-description {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-section {
    padding: 8rem 0;
    background-color: var(--dark-gray);
}

.contact-form {
    background: var(--charcoal);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--deep-gray);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    background: var(--dark-gray);
    border: 1px solid var(--deep-gray);
    border-radius: 4px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
}

.form-control::placeholder {
    color: var(--light-gray);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-check-input {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    background: var(--dark-gray);
    border: 1px solid var(--deep-gray);
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--neon-green);
    border-color: var(--neon-green);
}

.form-check-label {
    color: var(--light-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-check-label a {
    color: var(--neon-green);
}

.info-section {
    padding: 8rem 0;
    background-color: var(--pure-black);
}

.info-card {
    background: var(--charcoal);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--deep-gray);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.info-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.2);
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neon-green), var(--electric-blue));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--pure-black);
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.info-card p,
.info-card a {
    color: var(--light-gray);
    line-height: 1.7;
}

.info-card a:hover {
    color: var(--neon-green);
}

.footer {
    background: var(--charcoal);
    border-top: 1px solid var(--deep-gray);
    padding: 4rem 0 2rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px var(--neon-glow));
}

.footer-brand p {
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-cuit {
    color: var(--neon-green);
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-links li {
    color: var(--light-gray);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--neon-green);
    transform: translateX(5px);
}

.footer-links i {
    font-size: 0.9rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--deep-gray);
    text-align: center;
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

.page-hero {
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--pure-black) 100%);
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 6rem 0;
}

.content-section.bg-dark {
    background-color: var(--dark-gray);
}

.content-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.content-section p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.rounded-neon {
    border-radius: 8px;
    border: 1px solid var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.2);
}

.values-section {
    padding: 8rem 0;
    background-color: var(--pure-black);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--charcoal);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--deep-gray);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.2);
    transform: translateY(-5px);
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--light-gray);
    line-height: 1.7;
}

.impact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--pure-black) 100%);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.impact-item {
    background: var(--charcoal);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--deep-gray);
    transition: all 0.3s ease;
}

.impact-item:hover {
    border-color: var(--electric-blue);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.2);
    transform: translateY(-5px);
}

.impact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neon-pink), var(--electric-blue));
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
}

.impact-item h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.impact-item p {
    color: var(--light-gray);
    line-height: 1.7;
}

.cta-section {
    padding: 8rem 0;
    background: var(--dark-gray);
}

.cta-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-section {
    padding: 6rem 0;
    background-color: var(--pure-black);
}

.blog-article {
    background: var(--charcoal);
    border-radius: 8px;
    border: 1px solid var(--deep-gray);
    margin-bottom: 3rem;
    overflow: hidden;
}

.article-header {
    position: relative;
}

.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-meta {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: var(--dark-gray);
    border-bottom: 1px solid var(--deep-gray);
}

.article-date,
.article-category {
    color: var(--light-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-preview-content {
    padding: 2.5rem;
}

.article-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.article-excerpt {
    color: var(--light-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-read-more,
.btn-collapse {
    background: transparent;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-read-more:hover,
.btn-collapse:hover {
    background: var(--neon-green);
    color: var(--pure-black);
    transform: translateY(-2px);
}

.article-full-content {
    padding: 0 2.5rem 2.5rem;
}

.article-full-content h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin: 2rem 0 1rem;
}

.article-full-content p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--charcoal);
    border: 1px solid var(--deep-gray);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--neon-green);
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 1rem;
}

.category-list a {
    color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.category-list a:hover {
    background: var(--dark-gray);
    color: var(--neon-green);
    transform: translateX(5px);
}

.category-list span {
    color: var(--neon-green);
    font-size: 0.85rem;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--dark-gray);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.resource-item:hover {
    background: var(--deep-gray);
    transform: translateX(5px);
}

.resource-item i {
    font-size: 1.5rem;
    color: var(--neon-green);
}

.resource-item h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.resource-item p {
    font-size: 0.85rem;
    color: var(--light-gray);
    margin: 0;
}

.contact-page-section {
    padding: 6rem 0;
    background-color: var(--pure-black);
}

.contact-info-box {
    background: var(--charcoal);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid var(--deep-gray);
    height: 100%;
}

.contact-info-box h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-info-box > p {
    color: var(--light-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--neon-green), var(--electric-blue));
    border-radius: 8px;
    font-size: 1.3rem;
    color: var(--pure-black);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-text p,
.contact-text a {
    color: var(--light-gray);
    line-height: 1.7;
    margin: 0;
}

.map-section {
    margin-top: 6rem;
}

.map-section iframe {
    filter: grayscale(1) invert(1) contrast(0.9);
    border-radius: 8px;
}

.thanks-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--pure-black) 100%);
}

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

.thanks-icon {
    font-size: 5rem;
    color: var(--neon-green);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

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

.thanks-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.thanks-text {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.thanks-subtext {
    font-size: 1rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-section {
    padding: 8rem 0 4rem;
    background-color: var(--pure-black);
}

.legal-content {
    background: var(--charcoal);
    padding: 4rem;
    border-radius: 8px;
    border: 1px solid var(--deep-gray);
}

.legal-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.legal-date {
    color: var(--neon-green);
    font-size: 1rem;
    margin-bottom: 3rem;
    display: block;
}

.legal-block {
    margin-bottom: 3rem;
}

.legal-block h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--neon-green);
}

.legal-block h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin: 2rem 0 1rem;
}

.legal-block p {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-block ul {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-block li {
    margin-bottom: 0.75rem;
}

.legal-block a {
    color: var(--neon-green);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--dark-gray);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table thead {
    background: var(--deep-gray);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--deep-gray);
}

.cookie-table th {
    color: var(--neon-green);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cookie-table td {
    color: var(--light-gray);
}

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

.cookie-settings-button {
    margin: 2rem 0;
    text-align: center;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    border-top: 2px solid var(--neon-green);
    padding: 2rem;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--light-gray);
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--neon-green);
}

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

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: var(--neon-green);
    color: var(--pure-black);
}

.cookie-btn-accept:hover {
    background: var(--electric-blue);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.cookie-btn-settings {
    background: transparent;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
}

.cookie-btn-settings:hover {
    background: var(--neon-green);
    color: var(--pure-black);
}

.cookie-btn-reject {
    background: transparent;
    border: 2px solid var(--deep-gray);
    color: var(--light-gray);
}

.cookie-btn-reject:hover {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    padding: 2rem;
    overflow-y: auto;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: var(--charcoal);
    border: 1px solid var(--neon-green);
    border-radius: 8px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    position: relative;
}

.cookie-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--light-gray);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover {
    color: var(--neon-pink);
    transform: rotate(90deg);
}

.cookie-modal h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.cookie-category {
    background: var(--dark-gray);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid var(--deep-gray);
}

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

.cookie-category h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin: 0;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

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

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--deep-gray);
    transition: 0.4s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    transition: 0.4s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: var(--neon-green);
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-category p {
    color: var(--light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

@media (max-width: 991px) {
    .nav-grid {
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }
    
    .nav-items {
        grid-column: 1 / -1;
        justify-content: flex-start;
        gap: 1.5rem;
    }
    
    .lang-switcher {
        grid-column: 2;
        justify-self: end;
    }
}

@media (max-width: 768px) {
    .nav-items {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-neon,
    .btn-outline-neon {
        width: 100%;
        text-align: center;
    }
    
    .intro-grid,
    .values-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .legal-content {
        padding: 2rem;
    }
    
    .cookie-table {
        font-size: 0.85rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .article-image {
        height: 200px;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .thanks-icon {
        font-size: 3.5rem;
    }
    
    .thanks-title {
        font-size: 2rem;
    }
}