:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f4c75;
    --highlight-color: #3282b8;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

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

a:hover {
    color: var(--highlight-color);
}

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

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-brand a {
    color: var(--primary-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--white);
    list-style: none;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.nav-links.active {
    display: flex;
}

.nav-links li {
    margin: 10px 0;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px;
    display: block;
    transition: color 0.3s ease;
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(15, 76, 117, 0.3);
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 76, 117, 0.4);
}

.hero-visual {
    margin-top: 60px;
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(15, 76, 117, 0.85));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    z-index: 2;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.3;
}

.hero-subtext {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

.btn-hero {
    background-color: var(--white);
    color: var(--accent-color);
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.story-intro {
    padding: 80px 20px;
    background-color: var(--white);
}

.story-intro h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    line-height: 1.3;
}

.story-intro p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.highlight-text {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 30px 0;
}

.inline-image {
    margin: 40px 0;
    border-radius: 8px;
}

.cta-inline {
    margin-top: 40px;
}

.link-arrow {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
    display: inline-block;
}

.problem-amplification {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.container-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.split-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.split-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-color);
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--error-color);
    font-weight: 700;
}

.emphasis {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 30px;
}

.split-visual img {
    border-radius: 8px;
}

.insight-reveal {
    padding: 80px 20px;
    background-color: var(--white);
}

.insight-reveal h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.insight-reveal p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.insight-card {
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

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

.insight-card p:last-child {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
}

.trust-building {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.trust-building h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.trust-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.trust-icon {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.trust-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.testimonials-inline {
    padding: 80px 20px;
    background-color: var(--white);
}

.testimonial {
    background-color: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--accent-color);
    margin: 30px 0;
    border-radius: 5px;
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 15px;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--accent-color);
}

.benefits-reveal {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.benefits-reveal h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.benefits-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-major {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-major img {
    width: 100%;
}

.benefit-content {
    padding: 30px;
}

.benefit-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.benefit-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--text-light);
    margin: 0;
}

.services-pricing {
    padding: 80px 20px;
    background-color: var(--white);
}

.services-pricing h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pricing-card {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px rgba(15, 76, 117, 0.2);
}

.card-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-header h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.card-subtitle {
    color: var(--text-light);
    margin-bottom: 20px;
}

.card-price {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.card-features {
    list-style: none;
    margin: 25px 0;
}

.card-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-color);
}

.card-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.btn-select {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: var(--highlight-color);
    transform: translateY(-2px);
}

.urgency-block {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.urgency-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--white);
}

.urgency-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.urgency-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.stat {
    text-align: center;
}

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

.stat p {
    font-size: 1rem;
    margin: 0;
}

.urgency-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    background-color: rgba(50, 130, 184, 0.3);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.form-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.form-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.enrollment-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.btn-submit {
    width: 100%;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--highlight-color);
    transform: translateY(-2px);
}

.final-cta {
    padding: 80px 20px;
    background-color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.final-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-large {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 18px 50px;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-large:hover {
    background-color: var(--highlight-color);
    transform: translateY(-2px);
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--highlight-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 10px 25px;
    border: 2px solid var(--white);
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    margin-top: 60px;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.hero-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-story {
    padding: 80px 20px;
    background-color: var(--white);
}

.about-story h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-story p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.mission-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.mission-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mission-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.mission-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.mission-image img {
    border-radius: 8px;
}

.values-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.values-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.value-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.team-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.team-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.4rem;
    margin: 20px 20px 10px;
    color: var(--primary-color);
}

.team-member .role {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin: 0 20px;
}

.team-member p {
    color: var(--text-light);
    margin: 15px 20px 20px;
    line-height: 1.6;
}

.numbers-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.numbers-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.numbers-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

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

.number-item p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

.cta-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.services-intro {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
}

.services-catalog {
    padding: 80px 20px;
    background-color: var(--white);
}

.service-detail {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-image img {
    border-radius: 8px;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-color);
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.comparison-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-item {
    background-color: var(--white);
    padding: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check {
    color: var(--success-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.comparison-item p {
    margin: 0;
    color: var(--text-color);
    font-size: 1.1rem;
}

.contact-content {
    padding: 80px 20px;
    background-color: var(--white);
}

.contact-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

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

.contact-item a {
    color: var(--accent-color);
}

.contact-note {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
}

.contact-note p {
    margin: 0;
    color: var(--text-color);
}

.contact-image img {
    border-radius: 8px;
}

.faq-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

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

.thanks-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
    min-height: calc(100vh - 60px);
    margin-top: 60px;
}

.thanks-content {
    background-color: var(--white);
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-details {
    text-align: left;
    margin: 40px 0;
}

.thanks-details h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.next-steps {
    list-style: none;
    counter-reset: step-counter;
}

.next-steps li {
    margin-bottom: 30px;
    padding-left: 60px;
    position: relative;
}

.next-steps li:before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.next-steps strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

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

.thanks-support {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: center;
}

.thanks-support h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.thanks-support p {
    margin: 0;
    color: var(--text-light);
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.legal-content {
    padding: 60px 20px;
    background-color: var(--white);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--accent-color);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 15px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--text-color);
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table thead {
    background-color: var(--bg-light);
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    font-weight: 600;
    color: var(--primary-color);
}

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

@media (min-width: 768px) {
    .hero-overlay h1 {
        font-size: 3rem;
    }

    .hamburger {
        display: none;
    }

    .nav-links {
        position: static;
        display: flex;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        gap: 5px;
    }

    .nav-links li {
        margin: 0;
    }

    .container-split {
        flex-direction: row;
        align-items: center;
    }

    .split-content {
        flex: 1;
    }

    .split-visual {
        flex: 1;
    }

    .service-detail {
        flex-direction: row;
        align-items: center;
    }

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

    .service-image {
        flex: 1;
    }

    .service-content {
        flex: 1;
    }

    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 0 0 calc(50% - 15px);
    }

    .benefits-asymmetric {
        flex-direction: row;
    }

    .benefit-major {
        flex: 1.5;
    }

    .benefit-grid {
        flex: 1;
    }

    .pricing-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .pricing-card {
        flex: 0 0 calc(50% - 15px);
    }

    .urgency-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .mission-content {
        flex-direction: row;
        align-items: center;
    }

    .mission-text {
        flex: 1;
    }

    .mission-image {
        flex: 1;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 0 0 calc(50% - 15px);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 0 0 calc(50% - 15px);
    }

    .numbers-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .number-item {
        flex: 0 0 calc(50% - 20px);
    }

    .comparison-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .comparison-item {
        flex: 0 0 calc(50% - 10px);
    }

    .contact-split {
        flex-direction: row;
        align-items: flex-start;
    }

    .contact-info {
        flex: 1;
    }

    .contact-image {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .cookie-actions {
        flex-shrink: 0;
    }
}

@media (min-width: 1024px) {
    .trust-item {
        flex: 0 0 calc(25% - 23px);
    }

    .pricing-card {
        flex: 0 0 calc(33.333% - 20px);
    }

    .value-card {
        flex: 0 0 calc(25% - 23px);
    }

    .team-member {
        flex: 0 0 calc(25% - 23px);
    }

    .number-item {
        flex: 0 0 calc(25% - 30px);
    }

    .benefit-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 0 0 calc(50% - 10px);
    }
}
