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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            color: #1d1d1f;
            overflow-x: hidden;
            background: #fff;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.72);
            backdrop-filter: saturate(180%) blur(20px);
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

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

        .logo {
            height: 35px;
        }

        .burger-menu {
            width: 28px;
            height: 28px;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
            background: transparent;
            border: none;
            padding: 5px 0;
        }

        .burger-line {
            width: 100%;
            height: 1.5px;
            background: #1d1d1f;
            transition: all 0.3s ease;
        }

        .burger-menu.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .burger-menu.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger-menu.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        .off-canvas {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 380px;
            height: 100vh;
            background: #fbfbfd;
            z-index: 999;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            box-shadow: -2px 0 20px rgba(0, 0, 0, 0.08);
        }

        .off-canvas.active {
            right: 0;
        }

        .off-canvas-content {
            padding: 70px 40px 40px;
        }

        .off-canvas nav a {
            display: block;
            padding: 16px 0;
            font-size: 20px;
            color: #1d1d1f;
            text-decoration: none;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            transition: color 0.3s;
            font-weight: 400;
        }

        .off-canvas nav a:hover {
            color: #06c;
        }

        .nav-parent {
            font-weight: 400;
        }

        .nav-submenu {
            margin: 0;
            padding: 0;
        }

        .nav-subitem {
            font-size: 17px !important;
            padding: 14px 0 14px 24px !important;
            color: #1d1d1f !important;
        }

        .nav-subitem:hover {
            color: #06c !important;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.45);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }


        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
            margin-top: 44px;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            object-fit: contain;
            background: #000;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 20px;
            max-width: 980px;
        }

        .hero h1 {
            font-size: 64px;
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.07;
            letter-spacing: -0.015em;
        }

        .hero p {
            font-size: 28px;
            margin-bottom: 30px;
            font-weight: 400;
            color: #6e6e73;
            line-height: 1.14;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .btn-primary {
            padding: 12px 24px;
            background: #0071e3;
            color: white;
            text-decoration: none;
            border-radius: 980px;
            font-size: 17px;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            font-weight: 400;
        }

        .btn-primary:hover {
            background: #0077ed;
        }

        .btn-secondary {
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            text-decoration: none;
            border-radius: 980px;
            font-size: 17px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            transition: all 0.2s;
            cursor: pointer;
            font-weight: 400;
            backdrop-filter: blur(10px);
        }

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

        /* Parallax Section */
        .parallax {
            position: relative;
            height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #000;
        }

        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            background: linear-gradient(135deg, #1d1d1f 0%, #2d2d2f 100%);
            transform: translateY(0);
            z-index: 0;
        }

        .parallax-content {
            text-align: center;
            color: white;
            padding: 20px;
            max-width: 800px;
            z-index: 1;
            position: relative;
        }

        .parallax h2 {
            font-size: 48px;
            margin-bottom: 16px;
            font-weight: 600;
            letter-spacing: -0.015em;
        }

        .parallax p {
            font-size: 21px;
            font-weight: 400;
            color: #f5f5f7;
            line-height: 1.4;
        }

        /* Section */
        .section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 30px;
        }

        .section-title {
            font-size: 48px;
            text-align: center;
            margin-bottom: 12px;
            font-weight: 600;
            letter-spacing: -0.015em;
        }

        .section-subtitle {
            font-size: 21px;
            text-align: center;
            margin-bottom: 60px;
            color: #6e6e73;
            font-weight: 400;
        }

        /* Carousel */
        .carousel {
            position: relative;
            overflow: hidden;
            border-radius: 18px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .carousel-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-item {
            min-width: 100%;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f5f5f7;
            color: #1d1d1f;
            font-size: 28px;
            font-weight: 600;
            padding: 40px;
            text-align: center;
        }

        .carousel-item:nth-child(2) {
            background: linear-gradient(135deg, #fbfbfd 0%, #f5f5f7 100%);
        }

        .carousel-item:nth-child(3) {
            background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 24px;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #d2d2d7;
            cursor: pointer;
            transition: all 0.3s;
        }

        .carousel-dot.active {
            background: #1d1d1f;
            transform: scale(1.2);
        }


        /* Testimonials */
        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .testimonial {
            background: #fbfbfd;
            padding: 40px 30px;
            border-radius: 18px;
            text-align: center;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

        .testimonial-img {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e5e5ea 0%, #d1d1d6 100%);
            margin: 0 auto 20px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .testimonial p {
            font-size: 17px;
            line-height: 1.47;
            margin-bottom: 20px;
            color: #1d1d1f;
        }

        .testimonial-author {
            font-weight: 500;
            color: #6e6e73;
            font-size: 15px;
        }


        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 60px;
        }

        .pricing-card {
            background: #fbfbfd;
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 18px;
            padding: 48px 30px;
            text-align: center;
            transition: all 0.3s;
        }

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

        .pricing-card.featured {
            border: 2px solid #0071e3;
            background: #fff;
        }

        .pricing-name {
            font-size: 21px;
            font-weight: 600;
            margin-bottom: 16px;
            color: #1d1d1f;
        }

        .pricing-price {
            font-size: 48px;
            font-weight: 600;
            margin-bottom: 4px;
            letter-spacing: -0.015em;
        }

        .pricing-period {
            font-size: 17px;
            color: #86868b;
            margin-bottom: 30px;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 36px;
            text-align: left;
        }

        .pricing-features li {
            padding: 10px 0;
            font-size: 14px;
            color: #1d1d1f;
        }

        .pricing-features li::before {
            content: "✓";
            color: #0071e3;
            font-weight: 600;
            margin-right: 10px;
        }

        /* FAQ */
        .faq-item {
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
            margin-bottom: 0;
        }

        .faq-question {
            padding: 28px 0;
            font-size: 21px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.2s;
        }

        .faq-question:hover {
            color: #0071e3;
        }

        .faq-icon {
            font-size: 20px;
            transition: transform 0.3s;
            color: #86868b;
            font-weight: 300;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-bottom: 28px;
        }

        .faq-answer p {
            font-size: 17px;
            line-height: 1.47;
            color: #6e6e73;
        }

        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 60px;
            align-items: start;
        }

        .contact-info {
            padding: 20px 0;
        }

        .contact-info-title {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: -0.015em;
        }

        .contact-info-text {
            font-size: 17px;
            line-height: 1.47;
            color: #6e6e73;
            margin-bottom: 40px;
        }

        .contact-details {
            margin-bottom: 40px;
        }

        .contact-detail-item {
            display: flex;
            gap: 20px;
            margin-bottom: 28px;
            align-items: start;
        }

        .contact-detail-item i {
            font-size: 24px;
            color: #0071e3;
            width: 32px;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .contact-detail-item h4 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 4px;
            color: #1d1d1f;
        }

        .contact-detail-item p {
            font-size: 15px;
            color: #6e6e73;
            line-height: 1.5;
        }

        .contact-hours {
            background: #f5f5f7;
            padding: 24px;
            border-radius: 12px;
        }

        .contact-hours h4 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #1d1d1f;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-hours i {
            color: #0071e3;
            font-size: 18px;
        }

        .contact-hours p {
            font-size: 15px;
            color: #6e6e73;
            line-height: 1.6;
        }

        /* Contact Form */
        .contact-form {
            max-width: 100%;
            margin: 0;
            background: #fbfbfd;
            padding: 48px;
            border-radius: 18px;
            border: 1px solid rgba(0, 0, 0, 0.04);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 400;
            font-size: 14px;
            color: #1d1d1f;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #d2d2d7;
            border-radius: 12px;
            font-size: 17px;
            font-family: inherit;
            transition: all 0.2s;
            background: #fff;
            color: #1d1d1f;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #0071e3;
            box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        /* Footer */
        .footer {
            background: #f5f5f7;
            padding: 40px 30px 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }

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

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

        .footer-column h3 {
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1d1d1f;
        }

        .footer-column a {
            display: block;
            padding: 6px 0;
            color: #424245;
            text-decoration: none;
            font-size: 12px;
            transition: color 0.2s;
        }

        .footer-column a:hover {
            color: #0071e3;
        }

        .footer-bottom {
            border-top: 1px solid rgba(0, 0, 0, 0.06);
            padding-top: 16px;
            font-size: 11px;
            color: #6e6e73;
            line-height: 1.6;
        }

        .footer-legal {
            margin-top: 12px;
            margin-bottom: 8px;
        }

        .footer-legal a {
            color: #424245;
            text-decoration: none;
            margin-right: 20px;
            font-size: 11px;
        }

        .footer-legal a:hover {
            text-decoration: underline;
        }

        /* Image Text Sections */
        .image-text-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        .image-text-container.reverse {
            direction: rtl;
        }

        .image-text-container.reverse > * {
            direction: ltr;
        }

        .image-text-content {
            padding: 20px 0;
        }

        .image-text-title {
            font-size: 40px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: -0.015em;
            line-height: 1.1;
        }

        .image-text-description {
            font-size: 19px;
            line-height: 1.47;
            color: #6e6e73;
            margin-bottom: 28px;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 32px;
        }

        .feature-list li {
            padding: 10px 0;
            font-size: 17px;
            color: #1d1d1f;
            position: relative;
            padding-left: 28px;
        }

        .feature-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #0071e3;
            font-weight: 600;
            font-size: 18px;
        }

        .placeholder-image {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, #f5f5f7 0%, #e8e8ed 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            object-fit: cover;
            border-radius: 18px;
        }

        .placeholder-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            border-radius: 18px;
        }

        .placeholder-image::after {
            content: "";
            position: absolute;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(0, 113, 227, 0.1) 0%, rgba(0, 113, 227, 0.2) 100%);
            border-radius: 20px;
        }

        .placeholder-image.alt {
            background: linear-gradient(135deg, #e8e8ed 0%, #d2d2d7 100%);
        }

        /* Feature Cards */
        .feature-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            margin-top: 60px;
        }

        .feature-card {
            background: white;
            border-radius: 18px;
            padding: 40px 32px;
            position: relative;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }


        /* Icon Features Grid */
        .icon-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 60px;
        }

        .icon-feature-box {
            background: #f5f5f7;
            padding: 32px;
            border-radius: 18px;
            transition: all 0.3s;
        }

        .icon-feature-box:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .icon-feature-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
        }

        .icon-feature-icon {
            width: 56px;
            height: 56px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: white;
            transition: all 0.3s;
        }

        .icon-feature-box:hover .icon-feature-icon {
            background: #0071e3;
            transform: scale(1.05);
        }

        .icon-feature-icon i {
            font-size: 28px;
            color: #0071e3;
            transition: all 0.3s;
        }

        .icon-feature-box:hover .icon-feature-icon i {
            color: white;
        }

        .icon-feature-title {
            font-size: 19px;
            font-weight: 600;
            color: #1d1d1f;
            flex: 1;
        }

        .icon-feature-text {
            font-size: 15px;
            line-height: 1.5;
            color: #6e6e73;
        }

        /* Feature Cards */
        .feature-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
            margin-top: 60px;
        }

        .feature-card {
            background: white;
            border-radius: 18px;
            padding: 40px 32px;
            position: relative;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .feature-icon.purple {
            background: rgba(138, 110, 255, 0.1);
            color: #8A6EFF;
        }

        .feature-icon.orange {
            background: rgba(255, 149, 0, 0.1);
            color: #FF9500;
        }

        .feature-icon.cyan {
            background: rgba(0, 212, 212, 0.1);
            color: #00D4D4;
        }

        .feature-card-title {
            font-size: 21px;
            font-weight: 600;
            line-height: 1.3;
            color: #1d1d1f;
            margin-bottom: 60px;
        }



        /* Person Section with Dark Background */
        .person-section {
            background: white;
            padding: 0;
            margin: 80px 0 0 0;
            position: relative;
        }

        .person-section::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 100%;
            background: #3a3a3c;
            z-index: 0;
            width: 100%;
        }

        .person-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 450px 1fr;
            gap: 80px;
            align-items: flex-end;
            position: relative;
            z-index: 1;
        }

        .person-image-wrapper {
            position: relative;
            z-index: 1;
            height: 600px;
            display: flex;
            align-items: flex-end;
        }

        .person-image {
            width: 100%;
            height: auto;
            max-height: 600px;
            object-fit: contain;
            object-position: bottom;
        }

        .person-content {
            position: relative;
            z-index: 1;
            padding-bottom: 30px;
            color: white;
        }

        .person-title {
            font-size: 40px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: -0.015em;
            line-height: 1.1;
        }

        .person-description {
            font-size: 19px;
            line-height: 1.47;
            color: #f5f5f7;
            margin-bottom: 28px;
        }

        .person-content .feature-list {
            margin-bottom: 32px;
        }

        .person-content .feature-list li {
            color: #f5f5f7;
        }

        .person-content .feature-list li::before {
            color: white;
        }


        
        .highlight-purple {
            color: #8A6EFF;
        }

        .highlight-orange {
            color: #FF9500;
        }

        .highlight-cyan {
            color: #00D4D4;
        }

        .feature-card-btn {
            position: absolute;
            bottom: 32px;
            right: 32px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: #1d1d1f;
            color: white;
            border: none;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .feature-card-btn:hover {
            transform: scale(1.1);
            background: #0071e3;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            backdrop-filter: blur(10px);
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 24px;
            max-width: 700px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 48px;
            position: relative;
            animation: modalSlideIn 0.3s ease;
            border: 2px solid #0071e3;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #1d1d1f;
            color: white;
            border: none;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
            line-height: 1;
        }

        .modal-close:hover {
            background: #0071e3;
            transform: scale(1.1);
        }

        .modal-title {
            font-size: 40px;
            font-weight: 600;
            margin-bottom: 32px;
            letter-spacing: -0.015em;
            padding-right: 40px;
        }

        .modal-section {
            margin-bottom: 32px;
        }

        .modal-section h3 {
            font-size: 21px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .modal-section p {
            font-size: 17px;
            line-height: 1.47;
            color: #1d1d1f;
            margin-bottom: 16px;
        }

        .modal-link {
            color: #0071e3;
            text-decoration: none;
            font-size: 17px;
            display: inline-block;
            transition: color 0.2s;
        }

        .modal-link:hover {
            text-decoration: underline;
        }

        /* CTA Section */
        .cta-section {
            background: #f5f5f7;
            padding: 100px 30px;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 48px;
            margin-bottom: 12px;
            font-weight: 600;
            letter-spacing: -0.015em;
        }

        .cta-section p {
            font-size: 21px;
            margin-bottom: 30px;
            color: #6e6e73;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 40px;
            }

            .hero p {
                font-size: 21px;
            }

            .section-title {
                font-size: 32px;
            }

            .parallax h2 {
                font-size: 32px;
            }

            .cta-section h2 {
                font-size: 32px;
            }

            .faq-question {
                font-size: 17px;
            }

            .contact-form {
                padding: 32px 24px;
            }

            .image-text-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .image-text-container.reverse {
                direction: ltr;
            }

            .image-text-title {
                font-size: 32px;
            }

            .image-text-description {
                font-size: 17px;
            }

            .placeholder-image {
                height: 350px;
            }

            .feature-cards {
                grid-template-columns: 1fr;
            }

            .modal-content {
                padding: 32px 24px;
            }

            .modal-title {
                font-size: 28px;
            }

            .modal-section h3 {
                font-size: 19px;
            }

            .modal-section p {
                font-size: 15px;
            }
        }