/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-green-500: #236371;
    --primary-green-400: #328B9F;
    --primary-green-300: #48AFC6;
    --primary-green-200: #85CAD9;
    --primary-green-100: #C2E4EC;
    --primary-green-10: rgba(72, 175, 198, 0.1);
    
    --neutral-1000: #333333;
    --neutral-900: #4A4A4A;
    --neutral-800: #606060;
    --neutral-700: #777777;
    --neutral-500: #A4A4A4;
    --neutral-400: #BBBBBB;
    --neutral-300: #D2D2D2;
    --neutral-200: #E8E8E8;
    --white: #FFFFFF;
    
    --dark-purple: #2E243C;
    
    /* Typography */
    --font-inter: 'Inter', sans-serif;
    --font-inter-tight: 'Inter Tight', sans-serif;
}

body {
    font-family: var(--font-inter);
    color: var(--neutral-1000);
    background-color: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
.header {
    width: 100%;
    height: 100px;
    position: relative;
}

.header-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--neutral-300);
}

.header-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 21px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    width: 30.6px;
    height: 51px;
    display: block;
    object-fit: contain;
    max-width: 100%;
}

.logo:hover {
    opacity: 0.8;
}

.footer-logo {
    width: 30.6px;
    height: 51px;
    display: block;
    object-fit: contain;
    max-width: 100%;
}

/* Ensure logo links work properly */
a .logo {
    display: block;
}

.nav-menu {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    padding: 16px 26px;
    border: 1px solid var(--neutral-1000);
    border-radius: 30px;
}

.nav-link {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.21;
    letter-spacing: -0.02em;
    color: var(--neutral-1000);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-green-500);
    color: var(--white);
    border: 1px solid var(--primary-green-500);
    border-radius: 8px;
    padding: 12px;
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.21;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    transition: opacity 0.2s;
    text-decoration: none;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero-section {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    height: 1184px;
    position: relative;
    background-color: var(--white);
    overflow: hidden;
}

.orbit-container {
    position: absolute;
    left: -130px;
    top: 17px;
    width: 1672px;
    height: 1400px;
}

.orbit-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-text {
    position: absolute;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 84px;
    line-height: 1.21;
    letter-spacing: -0.04em;
    text-align: center;
    color: var(--neutral-1000);
    width: 791px;
}

.hero-subtitle {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    color: var(--neutral-900);
    width: 590px;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.21;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.btn-download:hover {
    opacity: 0.9;
}

.btn-download-primary {
    background-color: var(--primary-green-500);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-download-secondary {
    background-color: var(--white);
    color: var(--dark-purple);
    border: 1px solid var(--primary-green-500);
}

.btn-download img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 93px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 82%);
}

/* Details Section */
.details-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 100px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.benefits-header,
.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background-color: var(--primary-green-10);
    border: 1px solid var(--neutral-500);
    border-radius: 30px;
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.21;
    color: var(--neutral-900);
}

.badge-secondary {
    border: 1px solid var(--neutral-300);
    border-radius: 12px;
    padding: 8px 12px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.21;
    letter-spacing: -0.02em;
    color: var(--neutral-700);
}

.section-title {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 64px;
    line-height: 1.3125;
    letter-spacing: -0.04em;
    text-align: center;
    color: var(--neutral-1000);
    max-width: 694px;
    width: 100%;
}

.section-description {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--neutral-900);
    max-width: 870px;
    width: 100%;
}

/* Features Grid */
.features-grid {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 32px;
}

.feature-image-container {
    width: 650px;
    height: 648px;
    flex-shrink: 0;
    position: relative;
}

.feature-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--primary-green-500);
}

.features-list {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
}

.feature-card {
    width: 100%;
    padding: 20px;
    border: 1px solid var(--neutral-300);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-green-500);
    flex-shrink: 0;
}

.feature-title {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--neutral-1000);
}

.feature-description {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--neutral-900);
}

/* How It Works - Business */
.how-it-works {
    padding: 54px 100px;
    width: 100%;
}

.steps-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: start;
}

.step-card {
    width: 100%;
    min-height: 426px;
    border: 1px solid var(--neutral-400);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.step-card-highlighted {
    grid-column: span 2;
    background-color: var(--primary-green-10);
}

.step-card-highlighted .step-image-container {
    height: 261px;
    overflow: hidden;
}

.step-card-highlighted .step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

.step-image-container {
    width: 100%;
    height: 261px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 21px;
}

.step-image {
    width: 100%;
    max-width: 261px;
    height: 261px;
    object-fit: contain;
}

.step-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}

.step-content-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 28px 30.4px;
    margin-top: auto;
}

.step-title {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: -0.04em;
    color: var(--neutral-1000);
}

.step-description {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--neutral-700);
}

/* How It Works - Individuals */
.how-it-works-individuals {
    padding: 40px 100px 100px;
    width: 100%;
}

.individual-steps-container {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.individual-feature-image {
    width: 650px;
    height: 648px;
    flex-shrink: 0;
    position: relative;
}

.feature-individual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--primary-green-500);
}

.individual-steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.individual-step-card {
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.individual-step-card-highlighted {
    border: 1px solid var(--primary-green-500);
}

/* About Section */
.about-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-container {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex-shrink: 0;
}

.about-feature-img {
    width: 604px;
    height: 698px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--neutral-400);
}

.about-phone-container {
    width: 604px;
    height: 372px;
    position: relative;
    border-radius: 20px;
    border: 1px solid var(--neutral-400);
    overflow: hidden;
}

.phone-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1068px;
    background: linear-gradient(179deg, rgba(2, 1, 5, 0) 0%, rgba(52, 23, 97, 1) 97%);
}

.phone-mockup {
    position: absolute;
    left: 44px;
    top: -15px;
    width: 516px;
    height: 387px;
    object-fit: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
}

.about-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-title {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 36px;
    line-height: 1.21;
    letter-spacing: -0.02em;
    color: var(--neutral-1000);
    max-width: 508px;
}

.about-description {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--neutral-800);
}

.about-feature-card {
    width: 604px;
    height: 799px;
    border: 1px solid var(--neutral-400);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.about-feature2-img {
    width: 100%;
    height: 537px;
    object-fit: cover;
}

.about-feature-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-feature-title {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--neutral-1000);
}

.about-feature-description {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--neutral-800);
}

/* Pricing Section */
.pricing-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 54px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pricing-container {
    max-width: 1162px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 46px;
}

.pricing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 445px;
}

.pricing-title {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 48px;
    line-height: 1.21;
    letter-spacing: -0.04em;
    text-align: center;
    color: var(--neutral-1000);
}

.pricing-subtitle {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--neutral-800);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--primary-green-500);
    border-radius: 8px;
}

.toggle-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.21;
    cursor: pointer;
    background-color: var(--neutral-200);
    color: var(--neutral-500);
}

.toggle-btn-active {
    background-color: var(--primary-green-500);
    color: var(--white);
}

.pricing-cards {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 35px;
}

.pricing-card {
    width: 364px;
    min-height: 498px;
    padding: 19px 34px;
    background-color: var(--primary-green-10);
    border: 1px solid var(--neutral-400);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 33px;
}

.pricing-card-featured {
    background-color: var(--primary-green-500);
    border: 1px solid var(--primary-green-400);
}

.pricing-card-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.pricing-plan-name {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--neutral-1000);
}

.pricing-plan-name-white {
    color: var(--white);
}

.popular-badge {
    padding: 4px 8px;
    background-color: var(--primary-green-300);
    border-radius: 12px;
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.21;
    letter-spacing: -0.02em;
    color: var(--white);
}

.pricing-price {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--neutral-800);
}

.pricing-price-white {
    color: var(--neutral-200);
}

.pricing-divider {
    width: 100%;
    height: 1px;
    background-color: var(--neutral-500);
}

.pricing-divider-light {
    background-color: var(--primary-green-100);
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 22px;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-green-500);
    flex-shrink: 0;
}

.pricing-card-featured .check-icon {
    color: var(--white);
}

.pricing-feature span {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--neutral-800);
}

.pricing-card-featured .pricing-feature span {
    color: var(--neutral-200);
}

.btn-pricing {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--primary-green-500);
    border-radius: 8px;
    background-color: var(--white);
    color: var(--primary-green-500);
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.21;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.btn-pricing:hover {
    opacity: 0.9;
}

.btn-pricing-white {
    border: 1px solid var(--white);
    color: var(--primary-green-500);
    background-color: var(--white);
}

/* Testimonials Section */
.testimonials-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px 264px 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.testimonials-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.testimonials-title {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 48px;
    line-height: 1.21;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--neutral-1000);
}

.testimonials-subtitle {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--neutral-800);
}

.testimonial-container {
    max-width: 898px;
    width: 100%;
    height: 415px;
    position: relative;
    margin: 0 auto;
}

.testimonial-ellipse {
    position: absolute;
    left: 0;
    top: 0;
    width: 634px;
    height: 415px;
    background: radial-gradient(circle at 50% 50%, rgba(9, 98, 118, 0.5) 0%, rgba(120, 212, 232, 0) 85%);
    border-radius: 50%;
}

.testimonial-avatar {
    position: absolute;
    left: 194px;
    top: 84px;
    width: 246px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
}

.testimonial-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.testimonial-line {
    position: absolute;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(136, 67, 250, 1) 50%, rgba(0, 0, 0, 1) 100%);
}

.testimonial-line-horizontal {
    left: -2px;
    top: 307px;
    width: 1000px;
    height: 1px;
}

.testimonial-line-vertical-1 {
    left: 441px;
    top: 11px;
    width: 1px;
    height: 380px;
}

.testimonial-line-vertical-2 {
    left: 194px;
    top: 11px;
    width: 1px;
    height: 380px;
}

.testimonial-content {
    position: absolute;
    left: 471px;
    top: 84px;
    width: 331px;
    display: flex;
    flex-direction: column;
    gap: 37px;
}

.testimonial-text {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.21;
    letter-spacing: -0.02em;
    color: var(--neutral-900);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 271px;
}

.testimonial-name {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.21;
    letter-spacing: -0.02em;
    color: var(--neutral-900);
}

.testimonial-role {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.21;
    letter-spacing: -0.02em;
    color: var(--neutral-700);
}

.testimonial-dots {
    position: absolute;
    left: 262px;
    bottom: 84px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 20px;
    background-color: var(--primary-green-200);
}

.testimonial-dot-active {
    background-color: var(--primary-green-400);
}

/* FAQ Section */
.faq-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 54px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.faq-container {
    max-width: 1162px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.faq-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.faq-title {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 48px;
    line-height: 1.21;
    letter-spacing: -0.04em;
    text-align: center;
    color: var(--neutral-1000);
}

.faq-subtitle {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--neutral-800);
}

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

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

.faq-item-open {
    height: auto;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
}

.faq-question h3 {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.21;
    letter-spacing: -0.02em;
    color: var(--neutral-1000);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--neutral-1000);
    cursor: pointer;
}

.faq-answer {
    padding: 0 20px 50px;
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.21;
    letter-spacing: -0.02em;
    color: var(--neutral-1000);
}

.faq-divider {
    width: 100%;
    height: 1px;
    background-color: var(--neutral-300);
}

/* Newsletter Section */
.newsletter-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 100px;
}

.newsletter-card {
    width: 100%;
    padding: 40px 106px 0;
    background-color: var(--primary-green-10);
    border: 1px solid var(--neutral-400);
    border-radius: 20px;
    display: flex;
    gap: 100px;
    align-items: flex-start;
    justify-content: space-between;
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.newsletter-title {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 48px;
    line-height: 1.21;
    letter-spacing: -0.04em;
    color: var(--neutral-1000);
}

.newsletter-description {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--neutral-800);
    max-width: 503px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 4px;
    border: 1px solid var(--primary-green-500);
    border-radius: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.21;
    color: var(--neutral-800);
    outline: none;
}

.newsletter-input::placeholder {
    color: var(--neutral-800);
}

.newsletter-phone {
    width: 426px;
    height: 315px;
    object-fit: fill;
    flex-shrink: 0;
}

/* Footer */
.footer {
    max-width: 1440px;
    margin: 0 auto;
    padding: 54px 100px;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 123px;
}

.footer-logo {
    width: 30.6px;
    height: 51px;
}

.footer-nav {
    display: flex;
    align-items: flex-end;
    gap: 24px;
}

.footer-link {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.21;
    letter-spacing: -0.02em;
    color: var(--neutral-800);
    text-decoration: none;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icon {
    width: 20px;
    height: 20px;
    color: var(--neutral-800);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--primary-green-500);
}

.footer-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--dark-purple);
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
    color: var(--neutral-1000);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .header-content,
    .hero-section,
    .details-section,
    .pricing-section,
    .testimonials-section,
    .faq-section,
    .newsletter-section,
    .footer {
        max-width: 100%;
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .orbit-container {
        left: -200px;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 64px;
        width: 100%;
        max-width: 600px;
    }
    
    .hero-subtitle {
        width: 100%;
        max-width: 500px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .features-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-image-container {
        width: 100%;
        max-width: 650px;
    }
    
    .features-list {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
    
    .about-section {
        padding: 60px 40px;
    }
    
    .about-container {
        flex-direction: column;
        align-items: center;
    }
    
    .about-images {
        width: 100%;
        max-width: 604px;
    }
    
    .about-feature-img,
    .about-phone-container {
        width: 100%;
    }
    
    .about-feature-card {
        width: 100%;
    }
    
    .testimonials-section {
        padding: 60px 40px 40px;
    }
    
    .newsletter-card {
        padding: 40px 60px 0;
        gap: 60px;
    }
    
    .newsletter-phone {
        width: 350px;
        height: auto;
    }
}

@media (max-width: 1024px) {
    .header-content {
        padding: 21px 40px;
    }
    
    .nav-menu {
        padding: 12px 20px;
        gap: 16px;
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .hero-section {
        height: auto;
        min-height: 800px;
        padding-bottom: 60px;
    }
    
    .orbit-container {
        width: 1400px;
        left: -300px;
    }
    
    .hero-title {
        font-size: 56px;
        max-width: 550px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        max-width: 450px;
    }
    
    .details-section {
        padding: 40px 40px 80px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .section-description {
        font-size: 18px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-card-highlighted {
        grid-column: span 1;
    }
    
    .individual-steps-container {
        flex-direction: column;
    }
    
    .individual-feature-image {
        width: 100%;
        max-width: 650px;
        height: auto;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 400px;
    }
    
    .pricing-header {
        width: 100%;
    }
    
    .testimonial-container {
        height: auto;
        min-height: 400px;
    }
    
    .testimonial-avatar {
        left: 50%;
        transform: translateX(-50%);
        top: 60px;
        width: 200px;
        height: 180px;
    }
    
    .testimonial-content {
        left: 50%;
        transform: translateX(-50%);
        top: 260px;
        width: 90%;
        max-width: 400px;
        text-align: center;
    }
    
    .testimonial-dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 40px;
    }
    
    .testimonial-line-horizontal,
    .testimonial-line-vertical-1,
    .testimonial-line-vertical-2 {
        display: none;
    }
    
    .newsletter-card {
        flex-direction: column;
        padding: 40px;
        align-items: center;
    }
    
    .newsletter-phone {
        width: 100%;
        max-width: 350px;
    }
    
    .contact-container {
        flex-direction: column;
        width: 100%;
        padding: 40px;
        gap: 40px;
    }
    
    .contact-details {
        width: 100%;
    }
    
    .contact-form {
        width: 100%;
    }
    
    .error-container,
    .success-container {
        width: 100%;
        height: auto;
        min-height: 400px;
        padding: 40px;
    }
    
    .success-title {
        width: 100%;
    }
    
    .privacy-container {
        width: 100%;
        min-height: auto;
    }
    
    .privacy-content {
        width: 100%;
    }
}

/* iOS Input Zoom Prevention & Touch Improvements */
@supports (-webkit-touch-callout: none) {
    input[type="text"],
    input[type="email"],
    textarea {
        font-size: 16px !important;
    }
    
    .form-input,
    .form-textarea {
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn-submit {
        -webkit-tap-highlight-color: rgba(35, 99, 113, 0.3);
    }
}

/* Better Mobile Form Spacing */
@media (max-width: 768px) {
    .form-input,
    .form-textarea {
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }
    
    .form-input:focus,
    .form-textarea:focus {
        box-shadow: 0 0 0 3px rgba(72, 175, 198, 0.15);
    }
    
    .form-input:active,
    .form-textarea:active {
        transform: scale(0.995);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .header {
        height: auto;
    }
    
    .header-content {
        padding: 16px 20px;
        gap: 16px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        border-radius: 0;
        border: none;
        border-left: 1px solid var(--neutral-300);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 20px;
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 20px;
        width: 100%;
        padding: 8px 0;
    }
    
    .header-content > .btn-primary {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .hero-section {
        min-height: 700px;
        padding: 40px 20px 60px;
    }
    
    .orbit-container {
        width: 1200px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-text {
        top: 40px;
    }
    
    .hero-title {
        font-size: 40px;
        width: 90%;
        max-width: 100%;
    }
    
    .hero-subtitle {
        font-size: 16px;
        width: 90%;
        max-width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 12px;
    }
    
    .btn-download {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
    
    .details-section {
        padding: 40px 20px 60px;
        gap: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .feature-image-container {
        height: 400px;
    }
    
    .how-it-works,
    .how-it-works-individuals {
        padding: 40px 20px;
    }
    
    .step-card {
        min-height: auto;
    }
    
    .step-image-container {
        height: 220px;
    }
    
    .step-image {
        max-width: 200px;
        height: 200px;
    }
    
    .about-section {
        padding: 60px 20px;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-description {
        font-size: 16px;
    }
    
    .about-feature-card {
        height: auto;
        min-height: 500px;
    }
    
    .about-feature2-img {
        height: 300px;
    }
    
    .pricing-section {
        padding: 40px 20px;
    }
    
    .pricing-title {
        font-size: 36px;
    }
    
    .pricing-subtitle {
        font-size: 18px;
    }
    
    .pricing-card {
        max-width: 100%;
    }
    
    .testimonials-section {
        padding: 60px 20px 40px;
    }
    
    .testimonials-title {
        font-size: 36px;
    }
    
    .testimonials-subtitle {
        font-size: 18px;
    }
    
    .testimonial-ellipse {
        width: 100%;
        max-width: 500px;
    }
    
    .testimonial-text {
        font-size: 20px;
    }
    
    .faq-section {
        padding: 40px 20px;
    }
    
    .faq-title {
        font-size: 36px;
    }
    
    .faq-subtitle {
        font-size: 18px;
    }
    
    .faq-question h3 {
        font-size: 18px;
    }
    
    .newsletter-section {
        padding: 60px 20px;
    }
    
    .newsletter-card {
        padding: 30px 20px 0;
    }
    
    .newsletter-title {
        font-size: 32px;
    }
    
    .newsletter-description {
        font-size: 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .newsletter-phone {
        display: none;
    }
    
    .footer {
        padding: 40px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .footer-link {
        font-size: 18px;
    }
    
    .contact-hero-section,
    .error-hero-section,
    .success-hero-section,
    .privacy-hero-section {
        padding: 40px 20px 60px;
    }
    
    .contact-container {
        width: 100%;
        padding: 24px 16px;
        gap: 32px;
        border-radius: 16px;
        background: linear-gradient(167deg, rgba(50, 139, 159, 0) 0%, rgba(50, 139, 159, 0.15) 50%, rgba(50, 139, 159, 0.4) 100%);
    }
    
    .contact-details {
        width: 100%;
        gap: 16px;
    }
    
    .contact-title {
        font-size: 32px;
        line-height: 1.3;
    }
    
    .contact-description {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .contact-form {
        width: 100%;
        padding: 24px 16px;
        gap: 24px;
        border-radius: 16px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }
    
    .form-group {
        width: 100%;
        gap: 10px;
    }
    
    .form-group-textarea {
        width: 100%;
    }
    
    .form-label {
        font-size: 16px;
        font-weight: 600;
        line-height: 1.4;
    }
    
    .form-input {
        width: 100%;
        height: 52px;
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 10px;
        border: 1.5px solid var(--neutral-400);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .form-input:focus {
        border-width: 2px;
        padding: 13px 15px;
    }
    
    .form-textarea {
        width: 100%;
        min-height: 160px;
        height: 160px;
        padding: 14px 16px;
        font-size: 16px;
        line-height: 1.5;
        border-radius: 10px;
        border: 1.5px solid var(--neutral-400);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    .form-textarea:focus {
        border-width: 2px;
        padding: 13px 15px;
    }
    
    .form-submit-container {
        width: 100%;
        justify-content: stretch;
        margin-top: 0;
    }
    
    .btn-submit {
        width: 100%;
        padding: 14px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 10px;
        min-height: 50px;
    }
    
    .error-container,
    .success-container {
        padding: 30px 20px;
    }
    
    .error-code {
        font-size: 80px;
    }
    
    .error-title {
        font-size: 24px;
    }
    
    .error-description,
    .success-description {
        font-size: 16px;
    }
    
    .success-title {
        font-size: 32px;
    }
    
    .privacy-title {
        font-size: 36px;
    }
    
    .privacy-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 12px 16px;
    }
    
    .logo,
    .footer-logo {
        width: 25px;
        height: 42px;
    }
    
    .header-content > .btn-primary {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .badge {
        font-size: 14px;
        padding: 6px 16px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-description {
        font-size: 18px;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .pricing-title {
        font-size: 28px;
    }
    
    .pricing-subtitle,
    .testimonials-subtitle {
        font-size: 16px;
    }
    
    .testimonials-title,
    .faq-title {
        font-size: 28px;
    }
    
    .testimonial-text {
        font-size: 18px;
    }
    
    .newsletter-title,
    .success-title {
        font-size: 24px;
    }
    
    .newsletter-description {
        font-size: 14px;
    }
    
    .contact-hero-section,
    .error-hero-section,
    .success-hero-section,
    .privacy-hero-section {
        padding: 30px 16px 50px;
    }
    
    .contact-container {
        padding: 20px 12px;
        gap: 24px;
        border-radius: 12px;
    }
    
    .contact-title,
    .privacy-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .contact-description {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .contact-form {
        padding: 20px 14px;
        gap: 20px;
        border-radius: 12px;
    }
    
    .form-row {
        gap: 20px;
    }
    
    .form-group {
        gap: 8px;
    }
    
    .form-label {
        font-size: 15px;
        font-weight: 600;
    }
    
    .form-input {
        height: 50px;
        padding: 12px 14px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .form-input:focus {
        padding: 11px 13px;
    }
    
    .form-textarea {
        min-height: 140px;
        height: 140px;
        padding: 12px 14px;
        font-size: 16px;
        border-radius: 8px;
    }
    
    .form-textarea:focus {
        padding: 11px 13px;
    }
    
    .btn-submit {
        padding: 13px 20px;
        font-size: 15px;
        border-radius: 8px;
        min-height: 48px;
    }
    
    .btn-primary,
    .btn-download {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .error-code {
        font-size: 64px;
    }
    
    .error-title {
        font-size: 20px;
    }
}

/* Contact Page Styles */
.contact-hero-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 79px;
}

.contact-container {
    width: 1320px;
    min-height: 696px;
    background: linear-gradient(167deg, rgba(50, 139, 159, 0) 8%, rgba(50, 139, 159, 0.22) 67%, rgba(50, 139, 159, 0.8) 98%);
    border: 1px solid;
    border-image: linear-gradient(180deg, rgba(46, 36, 60, 0) 0%, rgba(133, 202, 217, 1) 100%) 1;
    border-radius: 20px;
    padding: 40px 41px;
    display: flex;
    gap: 79px;
    align-items: flex-start;
}

.contact-details {
    width: 445px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-title {
    font-family: var(--font-inter-tight);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.21;
    letter-spacing: -0.02em;
    color: var(--neutral-1000);
}

.contact-description {
    font-family: var(--font-inter-tight);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--neutral-800);
}

.contact-form {
    width: 715px;
    flex-shrink: 0;
    padding: 40px;
    background-color: var(--white);
    border: 1px solid var(--neutral-400);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    gap: 47px;
    box-sizing: border-box;
}

.form-row {
    display: flex;
    gap: 47px;
    width: 100%;
    align-items: flex-start;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.form-group-textarea {
    width: 100%;
}

.form-label {
    font-family: var(--font-inter-tight);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.21;
    letter-spacing: -0.02em;
    color: var(--neutral-1000);
    display: block;
}

.form-input {
    width: 100%;
    height: 60px;
    padding: 18px 20px;
    border: 1px solid var(--neutral-400);
    border-radius: 12px;
    font-family: var(--font-inter-tight);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.21;
    letter-spacing: -0.02em;
    color: var(--neutral-700);
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--white);
}

.form-input:focus {
    border-color: var(--primary-green-500);
    border-width: 2px;
    padding: 17px 19px;
}

.form-input::placeholder {
    color: var(--neutral-500);
    opacity: 1;
}

.form-textarea {
    width: 100%;
    height: 237px;
    padding: 20px;
    border: 1px solid var(--neutral-400);
    border-radius: 12px;
    font-family: var(--font-inter-tight);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--neutral-700);
    outline: none;
    resize: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--white);
}

.form-textarea:focus {
    border-color: var(--primary-green-500);
    border-width: 2px;
    padding: 19px;
}

.form-textarea::placeholder {
    color: var(--neutral-500);
    opacity: 1;
}

.form-submit-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: -20px;
}

.btn-submit {
    background-color: var(--primary-green-500);
    color: var(--white);
    border: 1px solid var(--primary-green-500);
    border-radius: 8px;
    padding: 12px 32px;
    font-family: var(--font-inter-tight);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.21;
    letter-spacing: -0.02em;
    cursor: pointer;
    transition: opacity 0.2s, background-color 0.2s;
    min-width: 120px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.btn-submit:hover {
    opacity: 0.9;
    background-color: var(--primary-green-400);
}

.btn-submit:active {
    transform: scale(0.98);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* 404 Page Styles */
.error-hero-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 79px;
}

.error-container {
    width: 1320px;
    height: 545px;
    background: linear-gradient(167deg, rgba(50, 139, 159, 0) 8%, rgba(50, 139, 159, 0.22) 67%, rgba(50, 139, 159, 0.8) 98%);
    border: 1px solid;
    border-image: linear-gradient(180deg, rgba(46, 36, 60, 0) 0%, rgba(133, 202, 217, 1) 100%) 1;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0 265px;
}

.error-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.error-code {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 128px;
    line-height: 1.21;
    letter-spacing: -0.04em;
    text-align: center;
    color: var(--neutral-1000);
}

.error-title {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 32px;
    line-height: 1.5;
    letter-spacing: -0.04em;
    text-align: center;
    color: var(--neutral-800);
}

.error-description {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.04em;
    text-align: center;
    color: var(--neutral-800);
}

/* Privacy Policy Page Styles */
.privacy-hero-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 79px;
}

.privacy-container {
    width: 1320px;
    min-height: 3662px;
    background: linear-gradient(167deg, rgba(50, 139, 159, 0) 8%, rgba(50, 139, 159, 0.22) 67%, rgba(50, 139, 159, 0.3) 74%);
    padding: 0;
}

.privacy-content {
    width: 1320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
}

.privacy-title {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 48px;
    line-height: 1.21;
    letter-spacing: -0.02em;
    color: var(--neutral-1000);
}

.privacy-text {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    color: var(--neutral-800);
    white-space: pre-line;
}

/* Success Page Styles */
.success-hero-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 79px;
}

.success-container {
    width: 1320px;
    height: 545px;
    background: linear-gradient(167deg, rgba(50, 139, 159, 0) 8%, rgba(50, 139, 159, 0.22) 67%, rgba(50, 139, 159, 0.8) 98%);
    border: 1px solid;
    border-image: linear-gradient(180deg, rgba(46, 36, 60, 0) 0%, rgba(133, 202, 217, 1) 100%) 1;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 0 236px;
}

.success-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.success-image {
    width: 153.19px;
    height: 205px;
    object-fit: contain;
}

.success-title {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 48px;
    line-height: 1.21;
    letter-spacing: -0.04em;
    text-align: center;
    color: var(--neutral-1000);
    width: 849px;
}

.success-description {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -0.04em;
    text-align: center;
    color: var(--neutral-800);
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-download {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-description {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contact-container {
        flex-direction: column;
        width: 100%;
        min-height: auto;
        padding: 30px;
    }
    
    .contact-details {
        width: 100%;
    }
    
    .contact-form {
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-group,
    .form-group-textarea {
        width: 100%;
    }
    
    .error-container,
    .success-container {
        width: 100%;
        padding: 30px;
    }
    
    .error-code {
        font-size: 96px;
    }
    
    .privacy-container {
        width: 100%;
    }
    
    .privacy-content {
        width: 100%;
    }
}

