:root {
    --bg-primary: #0A0E27;
    --bg-secondary: #000000;
    --gold-primary: #D4AF37;
    --gold-accent: #FFD700;
    --gold-light: #F4E4C1;
    --text-primary: #FFFFFF;
    --text-secondary: #C5C5C5;
    --border-gold: #B8860B;
    --shadow-gold: rgba(212, 175, 55, 0.3);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #F4E4C1 100%);
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-gold);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--gold-primary);
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold-accent);
}

.lang-switcher .lang-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    border: 1px solid var(--border-gold);
    border-radius: 5px;
    background: rgba(212, 175, 55, 0.1);
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../images/hero-financial.jpg') center/cover;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.9) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 2rem;
    color: var(--gold-accent);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-primary);
    box-shadow: 0 4px 15px var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-gold);
}

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

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--gold-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.intro-section {
    padding: 100px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.intro-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-gold);
    transition: transform 0.3s, box-shadow 0.3s;
}

.intro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.intro-icon i {
    font-size: 2rem;
    color: var(--bg-primary);
}

.intro-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--gold-light);
}

.intro-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.features-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-text .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    margin-top: 30px;
}

.features-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.features-list i {
    color: var(--gold-accent);
    font-size: 1.5rem;
    margin-top: 5px;
}

.features-list h4 {
    color: var(--gold-light);
    margin-bottom: 5px;
}

.features-list p {
    color: var(--text-secondary);
}

.features-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-gold);
}

.features-image img {
    width: 100%;
    height: auto;
    display: block;
}

.quiz-section {
    padding: 100px 0;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 10px;
    border: 1px solid var(--border-gold);
}

.quiz-question {
    display: none;
}

.quiz-question.active {
    display: block;
}

.quiz-question h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--gold-light);
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quiz-option {
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--border-gold);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-primary);
    font-size: 1.1rem;
    text-align: left;
}

.quiz-option:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-accent);
    transform: translateX(10px);
}

.quiz-progress {
    margin-top: 40px;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-gold);
    transition: width 0.3s;
    width: 20%;
}

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

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

.result-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--gold-accent);
}

.result-score {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.result-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.stats-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.5);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid var(--border-gold);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--bg-primary);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.cta-section {
    padding: 100px 0;
    background: rgba(212, 175, 55, 0.1);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-section {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--gold-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-gold);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-accent);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--gold-accent);
    text-decoration: underline;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-gold);
}

.info-card i {
    font-size: 2rem;
    color: var(--gold-accent);
    margin-bottom: 15px;
}

.info-card h3 {
    color: var(--gold-light);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--gold-accent);
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-gold);
    color: var(--text-secondary);
}

.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.thanks-section {
    padding: 150px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--gold-light);
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--gold-accent);
    margin-bottom: 30px;
}

.thanks-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.thanks-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.info-item i {
    font-size: 2rem;
    color: var(--gold-accent);
}

.info-item span {
    color: var(--text-secondary);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.legal-section {
    padding: 100px 0;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-date {
    color: var(--text-secondary);
    font-style: italic;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 60px;
    border-radius: 10px;
    border: 1px solid var(--border-gold);
}

.legal-content h2 {
    color: var(--gold-accent);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.legal-content h3 {
    color: var(--gold-light);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.legal-content h4 {
    color: var(--gold-light);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    color: var(--text-secondary);
    margin-left: 30px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--gold-accent);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--gold-light);
}

.legal-acceptance {
    margin-top: 40px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--border-gold);
    border-radius: 5px;
    text-align: center;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    border: 1px solid var(--border-gold);
    text-align: left;
}

.cookie-table th {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-accent);
}

.cookie-table td {
    color: var(--text-secondary);
}

.cookie-settings-link {
    text-align: center;
    margin: 40px 0;
}

.values-intro {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content .lead {
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.value-section {
    padding: 100px 0;
}

.value-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.value-content.reverse {
    direction: rtl;
}

.value-content.reverse > * {
    direction: ltr;
}

.value-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-gold);
}

.value-image img {
    width: 100%;
    height: auto;
    display: block;
}

.value-number {
    display: inline-block;
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.value-text h2 {
    font-size: 2.2rem;
    color: var(--gold-light);
    margin-bottom: 20px;
}

.value-lead {
    font-size: 1.2rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
    font-style: italic;
}

.value-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.value-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.highlight-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-item i {
    font-size: 2rem;
    color: var(--gold-accent);
    margin-top: 5px;
}

.highlight-item h4 {
    color: var(--gold-light);
    margin-bottom: 5px;
}

.highlight-item p {
    color: var(--text-secondary);
}

.commitment-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.5);
}

.commitment-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.commitment-content .lead {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 60px;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.commitment-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-gold);
    text-align: center;
    transition: transform 0.3s;
}

.commitment-card:hover {
    transform: translateY(-10px);
}

.commitment-card i {
    font-size: 3rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.commitment-card h3 {
    color: var(--gold-light);
    margin-bottom: 15px;
}

.commitment-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.content-intro {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-text .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.articles-section {
    padding: 100px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.article-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-gold);
}

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

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

.article-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-gold);
    color: var(--bg-primary);
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.article-content {
    padding: 30px;
}

.article-content h2 {
    color: var(--gold-light);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-excerpt {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-read-more {
    background: transparent;
    color: var(--gold-accent);
    border: 2px solid var(--gold-accent);
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 1rem;
}

.btn-read-more:hover {
    background: var(--gold-accent);
    color: var(--bg-primary);
}

.article-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.article-modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    background: var(--bg-primary);
    border-radius: 10px;
    border: 2px solid var(--border-gold);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-accent);
    color: var(--bg-primary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
}

.modal-body {
    padding: 60px;
}

.modal-body h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-body h3 {
    color: var(--gold-light);
    margin-top: 30px;
    margin-bottom: 15px;
}

.modal-body p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.modal-body ul {
    color: var(--text-secondary);
    margin-left: 30px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-details-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-gold);
    text-align: center;
    transition: transform 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-10px);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.info-icon i {
    font-size: 2rem;
    color: var(--bg-primary);
}

.contact-info-card h3 {
    color: var(--gold-light);
    margin-bottom: 15px;
}

.contact-info-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.info-label {
    display: block;
    color: var(--gold-accent);
    font-size: 0.9rem;
    margin-top: 10px;
}

.contact-form-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-intro p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-item i {
    color: var(--gold-accent);
    font-size: 1.5rem;
}

.benefit-item span {
    color: var(--text-secondary);
}

.map-section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border-gold);
    box-shadow: 0 10px 40px var(--shadow-gold);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(10px);
    padding: 30px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    border-top: 2px solid var(--border-gold);
    transform: translateY(100%);
    transition: transform 0.3s;
}

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

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

.cookie-text h3 {
    color: var(--gold-accent);
    margin-bottom: 10px;
}

.cookie-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--gold-accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--bg-primary);
    border: 2px solid var(--border-gold);
    border-radius: 10px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
}

.cookie-modal-content h2 {
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.cookie-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 5px;
    border: 1px solid var(--border-gold);
    margin-bottom: 20px;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.category-header h3 {
    color: var(--gold-light);
    font-size: 1.2rem;
}

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

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 25px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3.5px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .toggle-slider {
    background: var(--gold-accent);
}

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

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

.category-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.iti {
    width: 100%;
}

#phone {
    width: 100%;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        padding: 30px;
        transition: left 0.3s;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .features-content {
        grid-template-columns: 1fr;
    }

    .features-image {
        order: -1;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .value-content {
        grid-template-columns: 1fr;
    }

    .value-content.reverse {
        direction: ltr;
    }

    .value-image {
        order: -1;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .articles-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .thanks-info {
        flex-direction: column;
        gap: 20px;
    }

    .thanks-actions {
        flex-direction: column;
        width: 100%;
    }

    .thanks-actions .btn {
        width: 100%;
    }

    .modal-content {
        margin: 20px;
        max-height: 85vh;
    }

    .modal-body {
        padding: 30px 20px;
    }

    .legal-content {
        padding: 30px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .quiz-container {
        padding: 30px 20px;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .value-number {
        font-size: 3rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}