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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a2e;
    --text-light: #6c757d;
    --text-white: #ffffff;
    --border-color: #dee2e6;
    --success-color: #28a745;
}

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

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);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    width: 30px;
    height: 24px;
    justify-content: space-between;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-sticky {
    background: var(--highlight-color);
    color: var(--text-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #d63850;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.5);
}

.hero-visual {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    z-index: 1;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1611162617474-5b21e879e113?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 4rem 5%;
}

.hero-content-offset {
    max-width: 900px;
    margin-left: 10%;
}

.hero-title-xl {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle-light {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.5;
}

.btn-hero-ghost {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 2px solid var(--text-white);
    color: var(--text-white);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero-ghost:hover {
    background: var(--text-white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.story-narrow {
    padding: 6rem 5%;
    background: var(--text-white);
}

.story-container {
    max-width: 700px;
    margin: 0 auto;
}

.story-lead {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.insight-split {
    display: flex;
    align-items: center;
    padding: 5rem 0;
    background: var(--light-bg);
}

.insight-left,
.insight-right {
    flex: 1;
    padding: 3rem 5%;
}

.insight-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.insight-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.insight-body {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.btn-insight {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--accent-color);
    color: var(--text-white);
    font-weight: 600;
    border-radius: 6px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-insight:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

@media (max-width: 968px) {
    .insight-split {
        flex-direction: column;
    }

    .insight-left,
    .insight-right {
        padding: 2rem 5%;
    }
}

.problem-amplify {
    padding: 6rem 5%;
    background: var(--primary-color);
}

.amplify-content {
    max-width: 1200px;
    margin: 0 auto;
}

.amplify-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 3rem;
}

.amplify-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.amplify-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.amplify-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.amplify-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.amplify-card h3 {
    font-size: 1.4rem;
    color: var(--text-white);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

.trust-testimonial {
    padding: 5rem 5%;
    background: var(--light-bg);
}

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

.testimonial-quote {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding: 0 2rem;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--highlight-color);
    position: absolute;
    top: -20px;
    left: 0;
}

.testimonial-author {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

.solution-reveal {
    padding: 6rem 5%;
    background: var(--text-white);
}

.solution-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.solution-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.solution-columns {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.solution-col {
    flex: 1;
}

.solution-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.solution-subtitle.solution-new {
    color: var(--highlight-color);
}

.solution-list-old,
.solution-list-new {
    list-style: none;
    padding: 0;
}

.solution-list-old li,
.solution-list-new li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid var(--border-color);
}

.solution-list-old li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
}

.solution-list-new li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

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

.btn-solution {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--highlight-color);
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-solution:hover {
    background: #d63850;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

@media (max-width: 768px) {
    .solution-columns {
        flex-direction: column;
        gap: 2rem;
    }
}

.benefits-stagger {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.benefits-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.benefits-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefits-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.benefits-items {
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--text-white);
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-offset-1 {
    margin-left: 0;
}

.benefit-offset-2 {
    margin-left: 5%;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--highlight-color);
    opacity: 0.3;
    min-width: 80px;
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .benefit-item {
        flex-direction: column;
        gap: 1rem;
    }

    .benefit-offset-1,
    .benefit-offset-2 {
        margin-left: 0;
    }

    .benefit-number {
        font-size: 2rem;
        min-width: auto;
    }
}

.testimonial-inline-2 {
    padding: 5rem 5%;
    background: var(--accent-color);
}

.testimonial-wrap {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.testimonial-photo {
    flex-shrink: 0;
}

.testimonial-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.testimonial-text {
    flex: 1;
}

.testimonial-quote-inline {
    font-size: 1.3rem;
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-name {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

@media (max-width: 768px) {
    .testimonial-wrap {
        flex-direction: column;
        text-align: center;
    }
}

.urgency-block {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--highlight-color), #c92a47);
}

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

.urgency-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.urgency-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.urgency-cta-box {
    margin-top: 2rem;
}

.btn-urgency {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--text-white);
    color: var(--highlight-color);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-urgency:hover {
    background: var(--light-bg);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.courses-pricing {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.pricing-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-subtext {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.pricing-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    max-width: 420px;
    background: var(--text-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--highlight-color);
    color: var(--text-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pricing-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.5;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--highlight-color);
    margin-bottom: 1.5rem;
}

.btn-pricing {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.form-section {
    padding: 6rem 5%;
    background: var(--text-white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.course-form {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: var(--light-bg);
    cursor: not-allowed;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--highlight-color);
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d63850;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.guarantee-section {
    padding: 4rem 5%;
    background: var(--secondary-color);
}

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

.guarantee-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.guarantee-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.final-cta {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

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

.final-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.final-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.btn-final {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: var(--highlight-color);
    color: var(--text-white);
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-final:hover {
    background: #d63850;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(233, 69, 96, 0.5);
}

.footer {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1.5rem 5%;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: var(--highlight-color);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--success-color);
    color: var(--text-white);
}

.btn-accept:hover {
    background: #218838;
}

.btn-reject {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

.page-hero {
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.page-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.about-story {
    padding: 5rem 5%;
    background: var(--text-white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-heading {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.about-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 968px) {
    .about-container {
        flex-direction: column;
    }
}

.mission-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

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

.mission-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.values-section {
    padding: 5rem 5%;
    background: var(--text-white);
}

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

.values-heading {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.value-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
}

.team-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.team-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.team-heading {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.team-intro {
    font-size: 1.15rem;
    text-align: center;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--text-white);
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.cta-about {
    padding: 5rem 5%;
    background: var(--accent-color);
}

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

.cta-about-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cta-about-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-cta-about {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: var(--highlight-color);
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta-about:hover {
    background: #d63850;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.services-intro {
    padding: 4rem 5%;
    background: var(--text-white);
}

.services-intro-container {
    max-width: 1000px;
    margin: 0 auto;
}

.services-intro-heading {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.services-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.services-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.feature-icon {
    font-size: 2rem;
    color: var(--success-color);
    font-weight: bold;
}

.feature-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
}

.faq-section {
    padding: 5rem 5%;
    background: var(--text-white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-heading {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.faq-answer {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-section {
    padding: 5rem 5%;
    background: var(--text-white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
}

.contact-heading {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-detail {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-detail a {
    color: var(--accent-color);
    text-decoration: underline;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--text-white);
    font-weight: 600;
}

@media (max-width: 968px) {
    .contact-container {
        flex-direction: column;
    }
}

.contact-cta {
    padding: 5rem 5%;
    background: var(--light-bg);
}

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

.contact-cta-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-cta-text {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-contact-cta {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: var(--highlight-color);
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-contact-cta:hover {
    background: #d63850;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.thanks-hero {
    padding: 8rem 5% 6rem;
    background: var(--light-bg);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

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

.thanks-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.thanks-details {
    background: var(--text-white);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.thanks-heading {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.thanks-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.thanks-next {
    margin-bottom: 3rem;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
    background: var(--text-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--highlight-color);
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

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

.thanks-support {
    background: var(--text-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-support-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.thanks-support-text {
    font-size: 1.05rem;
    color: var(--text-light);
}

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

.btn-thanks-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--highlight-color);
    color: var(--text-white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-thanks-primary:hover {
    background: #d63850;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

.btn-thanks-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-thanks-secondary:hover {
    background: var(--accent-color);
    color: var(--text-white);
}

.legal-page {
    padding: 8rem 5% 4rem;
    background: var(--light-bg);
    min-height: 100vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--text-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.legal-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

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

.legal-actions {
    margin-top: 3rem;
    text-align: center;
}

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

.btn-legal:hover {
    background: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);
}

@media (max-width: 768px) {
    .legal-container {
        padding: 2rem;
    }
}