        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem min(7%, 70px);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
            min-width: 320px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: #000;
            z-index: 1001;
        }

        .logo img {
            width:70px;
            height:70px;
        }

        .nav-container {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            position: relative;
            padding-bottom: 5px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: orangered;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

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

        .btn {
            padding: 0.5rem 1rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
        }

        .btn-login {
            color: #333;
        }

        .btn-get-started {
            background: linear-gradient(45deg, #ff4500, #ff6b3d);
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            box-shadow: 0 4px 15px rgba(255, 69, 0, 0.2);
            color: white;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .hero-section {
            width: 100%;
            min-height: 100vh;
            padding: calc(var(--navbar-height) + 2rem) min(7%, 70px) 4rem;
            background: linear-gradient(135deg, #fff, #fff8f6);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 4rem;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
        }

        .subtitle {
            color: #ff4500;
            font-weight: 600;
            font-size: clamp(0.7rem, 1.5vw, 0.9rem);
            background: rgba(255, 69, 0, 0.1);
            padding: 8px 16px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
        }

        .highlight {
            background: linear-gradient(45deg, #ff4500, #ff6b3d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .description {
            color: #666;
            font-size: clamp(1rem, 1.5vw, 1.1rem);
            line-height: 1.7;
            margin-bottom: 2.5rem;
            max-width: 90%;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            padding: 1rem 2.5rem;
            background: linear-gradient(45deg, #ff4500, #ff6b3d);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: clamp(1rem, 1.5vw, 1.1rem);
            box-shadow: 0 10px 20px rgba(255, 69, 0, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 69, 0, 0.3);
        }

        .hero-image {
            flex: 1;
            max-width: 45%;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.3s ease;
        }

        .hero-image:hover img {
            transform: perspective(1000px) rotateY(0deg);
        }

        @media (max-width: 1024px) {
            .hero-section {
                padding: 6rem min(5%, 50px);
                gap: 3rem;
            }

            .hero-content {
                max-width: 500px;
            }

            .description {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            :root {
                --navbar-height: 70px;
            }

            .hero-section {
                flex-direction: column;
                padding: calc(var(--navbar-height) + 1rem) 5% 2rem;
                min-height: auto;
                text-align: center;
            }

            .hero-content {
                margin-top: 2rem;
                max-width: 100%;
            }

            .title {
                font-size: clamp(1.8rem, 5vw, 2.5rem);
                line-height: 1.3;
            }

            .description {
                font-size: 1rem;
                margin: 1.5rem auto;
                max-width: 90%;
            }

            .hero-image {
                max-width: 90%;
                margin-top: 2rem;
            }

            .subtitle {
                font-size: 0.9rem;
                margin: 0 auto 1rem;
            }

            .cta-button {
                width: 100%;
                max-width: 280px;
                margin: 0 auto;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            :root {
                --navbar-height: 60px;
            }

            .hero-section {
                padding-top: calc(var(--navbar-height) + 1.5rem);
            }

            .title {
                font-size: 1.8rem;
            }

            .hero-content {
                margin-top: 1rem;
            }

            .description {
                font-size: 0.9rem;
                line-height: 1.6;
            }
        }

        .section4 {
            width: 100%;
            min-height: auto;
            padding: 4rem min(7%, 70px);
            min-width: 320px;
            background-color: #213555;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .section4 .container {
            width: 100%;
            max-width: 1200px;
            min-width: 280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: clamp(1rem, 4vw, 4rem);
        }

        .section4 .content {
            flex: 1;
        }

        .section4 h1 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 800;
            margin-bottom: 2rem;
            color: white;
            background: none;
            -webkit-text-fill-color: white;
        }

        .section4 .start-button {
            background: linear-gradient(45deg, #ff4500, #ff6b3d);
            color: white;
            border: none;
            padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 69, 0, 0.2);
        }

        .section4 .start-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 69, 0, 0.3);
        }

        .section4 .qr-code {
            flex-shrink: 0;
            background-color: white;
            padding: clamp(1rem, 2vw, 2rem);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .section4 .qr-code img {
            width: clamp(150px, 20vw, 200px);
            height: clamp(150px, 20vw, 200px);
            display: block;
        }

        @media (max-width: 1024px) {
            .section4 {
                padding: 3rem 5%;
            }
            
            .section4 .container {
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .section4 {
                padding: 3rem 5%;
                min-height: auto;
            }

            .section4 .container {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
            }

            .section4 h1 {
                margin-bottom: 1.5rem;
            }

            .section4 .start-button {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .section4 {
                padding: 2rem 5%;
            }

            .section4 h1 {
                font-size: 1.8rem;
            }

            .section4 .qr-code {
                width: 100%;
                display: flex;
                justify-content: center;
            }

            .section4 .qr-code img {
                width: 150px;
                height: 150px;
            }
        }

        .features {
            padding: 100px min(7%, 70px);
            min-width: 320px;
            margin: 0 auto;
            font-family: system-ui, -apple-system, sans-serif;
            background-color: #F8FAFC;
             h1 {
                text-align: center;
                font-size: 2.5rem;
                margin-bottom: 60px;
                color: #1a202c;
              }
          
              .features-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: clamp(1rem, 3vw, 2rem);
                width: 100%;
                max-width: 1200px;
                margin: 0 auto;
              }
          
              .feature-card {
                background: white;
                border-radius: 20px;
                padding: 2rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
                border: 1px solid rgba(0, 0, 0, 0.05);
              }
          
              .feature-icon {
                width: 64px;
                height: 64px;
                margin: 0 auto 20px;
                color: orangered;
              }
          
              .feature-title {
                font-size: 1.25rem;
                font-weight: 600;
                margin-bottom: 12px;
                color: #1a202c;
              }
          
              .feature-description {
                color: #64748b;
                line-height: 1.5;
              }
          
              @media (max-width: 768px) {
                .features-grid {
                  grid-template-columns: 1fr;
                  gap: 30px;
                }
              }
        }

        .how-it-works {
            padding: 100px min(7%, 70px);
            min-width: 320px;
            max-width: 1200px;
            margin: 0 auto;
            font-family: system-ui, -apple-system, sans-serif;
        }

        .how-it-works h1 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: #1a202c;
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: clamp(1rem, 3vw, 2rem);
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .step-card {
            padding: 20px;
            position: relative;
        }

        .step-number {
            width: 48px;
            height: 48px;
            background-color: orangered;
            color: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
        }

        .step-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: #1a202c;
        }

        .step-description {
            color: #64748b;
            line-height: 1.5;
            margin: 0;
        }

        @media (max-width: 768px) {
            .steps-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .step-card {
                max-width: 400px;
                margin: 0 auto;
            }
        }

        .section6{
            width: 100%;
            background-color: #F8FAFC;
        }

        .pricing-section {
            padding: 100px min(7%, 70px);
            min-width: 320px;
            max-width: 1200px;
            margin: 0 auto;
            font-family: system-ui, -apple-system, sans-serif;
        }

        .pricing-section h1 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: #1a202c;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: clamp(1rem, 3vw, 2rem);
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background: white;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            border-radius: 20px 20px 20px 20px;

            .top{
                background-color: rgb(255, 255, 255);
                backdrop-filter: blur(55px) !important;
                width: 100%;
            border-radius: 12px;
            padding: 15px;
            height: 35%;


            }
        }

        .pricing-card.featured {
            background: linear-gradient(45deg, #ff4500, #ff6b3d);
            transform: scale(1.05);
        }
        .pricing-card.featured .top{
            background-color: orangered;
            border-radius: 12px;
            padding: 15px;
            color: white;
        }
        .pricing-card.featured .plan-description,
        .pricing-card.featured .plan-name {
            color: white;
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1a202c;
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .plan-price span {
            font-size: 1rem;
            font-weight: normal;
        }

        .plan-description {
            color: #64748b;
            margin-bottom: 30px;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
            text-align: left;
            padding: 30px;
            width: 100%;
            height: 65%;
            background-color: #f9fafc;
            border-radius: 10px 10px 20px 20px;
        }

        .features-list.b{
            background-color: white;
            color: #000;
        }

        .features-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }

        .features-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #22c55e;
        }

        .featured .features-list li::before {
            color: rgb(0, 0, 0);
        }

        .choose-plan-btn {
            background: linear-gradient(45deg, #ff4500, #ff6b3d);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .featured .choose-plan-btn {
            background: rgb(0, 0, 0);
            color: #fefefe;
        }

        .choose-plan-btn:hover {
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
            
            .pricing-card {
                margin-bottom: 20px;
            }
        }

        .testimonials-section {
            padding: 100px min(7%, 70px);
            min-width: 320px;
            max-width: 1200px;
            margin: 0 auto;
            font-family: system-ui, -apple-system, sans-serif;
        }

        .testimonials-section h1 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 60px;
            color: #1a202c;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: clamp(1rem, 3vw, 2rem);
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            position: relative;
            border: 1px solid #e2e8f0;
        }

        .stars {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
        }

        .star {
            color: #fbbf24;
            font-size: 24px;
        }

        .testimonial-text {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 24px;
            flex-grow: 1;
            font-size: 0.95rem;
        }

        .customer-name {
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 4px;
            font-size: 1rem;
        }

        .customer-title {
            color: #64748b;
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
            
            .testimonial-card {
                margin-bottom: 20px;
            }
        }

        .section7{
            background-color: #f9fafc;
            padding: 60px 0;
        }

        .faq-section {
            padding: 100px min(7%, 70px);
            min-width: 320px;
            max-width: 1200px;
            margin: 0 auto;
            font-family: system-ui, -apple-system, sans-serif;
        }

        .faq-section h1 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 60px;
            color: #1a202c;
        }

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

        .faq-item {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
        }

        .faq-question {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 12px;
        }

        .faq-answer {
            color: #64748b;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 20px;
            }
            
            .faq-item {
                padding: 24px;
            }
        }

        .cta-section {
            background: linear-gradient(45deg, #ff4500, #ff6b3d);
            padding: 100px 20px;
            text-align: center;
            color: white;
        }

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

        .cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 24px;
            color: white;
            font-family: system-ui, -apple-system, sans-serif;
        }

        .cta-description {
            font-size: 1.25rem;
            margin-bottom: 40px;
            color: rgba(255, 255, 255, 0.9);
            font-family: system-ui, -apple-system, sans-serif;
            line-height: 1.5;
        }

        .cta-button {
            display: inline-block;
            background: white;
            color: #ff4500;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
            font-family: system-ui, -apple-system, sans-serif;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .cta-button:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .footer {
            background-color: #1e293b;
            color: rgba(255, 255, 255, 0.8);
            padding: 24px;
            text-align: center;
            font-family: system-ui, -apple-system, sans-serif;
            font-size: 0.875rem;
        }

        @media (max-width: 768px) {
            .cta-title {
                font-size: 2rem;
            }
            
            .cta-description {
                font-size: 1.125rem;
                padding: 0 20px;
            }
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 25px;
            height: 2px;
            background-color: #333;
            transition: all 0.3s ease;
        }

        @media (max-width: 1024px) {
            .navbar {
                padding: 1rem 5%;
            }
            
            .nav-links {
                gap: 1.5rem;
            }
            
            .auth-buttons {
                gap: 0.8rem;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            
            .nav-container {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: white;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.3s ease-in-out;
                z-index: 999;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
                overscroll-behavior: contain;
            }
            
            .nav-container.active {
                right: 0;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links {
                display: none;
            }
            
            .auth-buttons {
                display: none;
            }
            
            .nav-container.active .nav-links,
            .nav-container.active .auth-buttons {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }
            
            .nav-container.active .nav-links {
                margin-bottom: 2rem;
            }
            
            html, body {
                overflow-x: hidden;
                position: relative;
                width: 100%;
            }
            
            .nav-container.active .nav-links {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }
            
            .nav-container.active .auth-buttons {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 1rem;
                width: 80%;
                max-width: 300px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(7px, 7px);
            }
            
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }
        }

        @media (max-width: 480px) {
            .logo img {
                width: 50px;
                height: 50px;
            }
            
            .logo span {
                font-size: 0.9rem;
            }
            
            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem min(7%, 70px);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.95);
            min-width: 320px;
        }

        .hero-section {
            display: flex;
            align-items: center;
            padding: 6rem min(7%, 70px);
            gap: 2rem;
            background: linear-gradient(to right, #fff, #fff8f6);
            min-height: auto;
            min-width: 320px;
        }

        .hero-content {
            flex: 1;
            min-width: 280px;
        }

        .hero-image {
            flex: 1;
            max-width: 50%;
            min-width: 280px;
        }

        .section4 {
            width: 100%;
            min-height: auto;
            padding: 4rem min(7%, 70px);
            min-width: 320px;
        }

        .section4 .container {
            width: 100%;
            max-width: 1200px;
            min-width: 280px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: clamp(1rem, 4vw, 4rem);
        }

        .features,
        .how-it-works,
        .pricing-section,
        .testimonials-section,
        .faq-section {
            padding: 100px min(7%, 70px);
            min-width: 320px;
        }

        .features-grid,
        .steps-grid,
        .pricing-grid,
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: clamp(1rem, 3vw, 2rem);
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
        }

        h1 {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            word-wrap: break-word;
        }

        @media (max-width: 640px), (max-zoom: 0.8) {
            .nav-container {
                width: 100%;
                min-width: 280px;
            }

            .hero-section {
                flex-direction: column;
                align-items: center;
            }

            .hero-image {
                max-width: 100%;
            }

            .section4 .container {
                flex-direction: column;
                align-items: center;
            }

            .section4 .qr-code img {
                width: min(150px, 100%);
                height: auto;
            }
        }

        .container,
        .content {
            max-width: 1200px;
            min-width: 280px;
            width: 100%;
            margin: 0 auto;
        }

        .btn,
        .cta-button,
        .start-button {
            min-width: max-content;
            white-space: nowrap;
            padding: 0.8rem clamp(1rem, 2vw, 2rem);
        }

        img {
            max-width: 100%;
            height: auto;
            object-fit: contain;
        }

        body {
            font-size: clamp(14px, 1vw, 16px);
            min-width: 320px;
            overflow-x: hidden;
        }

        @media screen and (max-width: 480px), (max-zoom: 0.67) {
            .navbar,
            .hero-section,
            .section4,
            .features,
            .how-it-works,
            .pricing-section,
            .testimonials-section,
            .faq-section {
                padding: 2rem min(5%, 30px);
            }

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

            .nav-links,
            .auth-buttons {
                gap: 0.5rem;
            }
        }

        body.menu-active {
            overflow: hidden;
            touch-action: none;
        }

        main {
            position: relative;
            padding-top: 80px;
        }

        /* First, define navbar height */
        :root {
            --navbar-height: 90px;
        }

        /* Navbar styles to ensure it stays on top */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--navbar-height);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
        }

        /* Hero section styles */
        .hero-section {
            width: 100%;
            min-height: 100vh;
            padding: calc(var(--navbar-height) + 2rem) min(7%, 70px) 4rem;
            background: linear-gradient(135deg, #fff, #fff8f6);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 4rem;
        }

        .hero-content {
            flex: 1;
            max-width: 600px;
        }

        .hero-image {
            flex: 1;
            max-width: 45%;
        }

        /* Mobile styles */
        @media (max-width: 768px) {
            :root {
                --navbar-height: 70px;
            }

            .hero-section {
                flex-direction: column;
                padding: calc(var(--navbar-height) + 1rem) 5% 2rem;
                min-height: auto;
                text-align: center;
            }

            .hero-content {
                margin-top: 2rem;
                max-width: 100%;
            }

            .title {
                font-size: clamp(1.8rem, 5vw, 2.5rem);
                line-height: 1.3;
            }

            .description {
                font-size: 1rem;
                margin: 1.5rem auto;
                max-width: 90%;
            }

            .hero-image {
                max-width: 90%;
                margin-top: 2rem;
            }

            .subtitle {
                font-size: 0.9rem;
                margin: 0 auto 1rem;
            }

            .cta-button {
                width: 100%;
                max-width: 280px;
                margin: 0 auto;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            :root {
                --navbar-height: 60px;
            }

            .hero-section {
                padding-top: calc(var(--navbar-height) + 1.5rem);
            }

            .title {
                font-size: 1.8rem;
            }

            .hero-content {
                margin-top: 1rem;
            }

            .description {
                font-size: 0.9rem;
                line-height: 1.6;
            }
        }