      * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: white;
            color: #333;
            line-height: 1.6;
        }

        /* Header */
        header {
            background: white;
            padding: 1rem 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #e91e63;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            width: 30%;
        }


        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            transition: color 0.3s;
            font-weight: 500;
        }

        .nav-links a:hover {
            color: #e91e63;
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: #e91e63;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
            border-radius: 10px;
            margin: 0.5rem 2rem 0 0;
            min-width: 200px;
            z-index: 1000;
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav-links {
            list-style: none;
            padding: 1rem 0;
        }

        .mobile-nav-links li {
            border-bottom: 1px solid #fce4ec;
        }

        .mobile-nav-links li:last-child {
            border-bottom: none;
        }

        .mobile-nav-links a {
            color: #333;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            padding: 1rem 1.5rem;
            display: block;
            transition: all 0.3s;
        }

        .mobile-nav-links a:hover {
            background: linear-gradient(135deg, #fce4ec, #f8bbd0);
            color: #e91e63;
        }

        /* Hero Section */
       .hero {
            background: linear-gradient(135deg, rgba(233, 30, 99, 0.85), rgba(255, 105, 180, 0.75)), 
                        url('images/hero-image.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 8rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: white;
            clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1000px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }


.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #ad008d, #b800d9);
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.cta-button:hover::after {
  left: 100%;
}

        /* Trust Section */
        .trust-section {
            background: white;
            padding: 3rem 2rem;
            text-align: center;
            border-bottom: 3px solid #fce4ec;
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #fce4ec, #f8bbd0);
            border-radius: 15px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .trust-icon {
            font-size: 2.5rem;
        }

        .trust-text {
            text-align: left;
        }

        .trust-text strong {
            display: block;
            color: #e91e63;
            font-size: 1.1rem;
        }

        .trust-text span {
            font-size: 0.9rem;
            color: #666;
        }

        /* Hook Section */
        .hook {
            background: linear-gradient(135deg, #fce4ec, #f8bbd0);
            padding: 5rem 2rem;
            text-align: center;
        }

        .hook-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .hook h2 {
            font-size: 2.5rem;
            color: #e91e63;
            margin-bottom: 1rem;
        }

        .hook-subtitle {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .hook-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .hook-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .hook-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        .hook-card-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .hook-card h3 {
            color: #e91e63;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .hook-card p {
            color: #666;
            line-height: 1.8;
        }

        /* Image Section */
        .image-section {
            padding: 5rem 2rem;
            background: white;
        }

        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .image-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 300px;
            background: linear-gradient(135deg, #fce4ec, #f8bbd0);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-card-content {
            text-align: center;
            padding: 2rem;
            z-index: 2;
        }

        .image-card h3 {
            font-size: 2rem;
            color: #e91e63;
            margin-bottom: 1rem;
        }

        .image-card p {
            color: #666;
            font-size: 1.1rem;
        }

        .image-icon {
            font-size: 5rem;
            margin-bottom: 1rem;
        }

        /* Simulator */
        .simulator {
            padding: 5rem 2rem;
            background: white;
            max-width: 1200px;
            margin: 0 auto;
        }

        .simulator h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #e91e63;
            margin-bottom: 1rem;
        }

        .simulator-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .simulator-container {
            background: linear-gradient(135deg, #fce4ec, #f8bbd0);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .input-group {
            margin-bottom: 2rem;
        }

        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: bold;
            color: #333;
            font-size: 1.1rem;
        }

        input[type="range"] {
            width: 100%;
            height: 8px;
            border-radius: 5px;
            background: white;
            outline: none;
            -webkit-appearance: none;
        }

        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background: #e91e63;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        input[type="range"]::-moz-range-thumb {
            width: 25px;
            height: 25px;
            border-radius: 50%;
            background: #e91e63;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .value-display {
            text-align: center;
            font-size: 1.8rem;
            color: #e91e63;
            font-weight: bold;
            margin-top: 0.5rem;
            background: white;
            padding: 0.5rem;
            border-radius: 10px;
        }

        .results {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            margin-top: 2rem;
        }

        .result-item {
            display: flex;
            justify-content: space-between;
            padding: 1rem;
            border-bottom: 2px solid #fce4ec;
        }

        .result-item:last-child {
            border-bottom: none;
        }

        .result-label {
            font-weight: bold;
            color: #333;
            font-size: 1.1rem;
        }

        .result-value {
            color: #e91e63;
            font-weight: bold;
            font-size: 1.3rem;
        }

        /* Security Info Section */
        .security-info {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #414241, #3a3c3a);
            color: white;
            text-align: center;
        }

        .security-info h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .security-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .security-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid rgba(255,255,255,0.2);
        }

        .security-card-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .security-card h3 {
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        /* FAQ */
        .faq {
            padding: 5rem 2rem;
            background: white;
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #e91e63;
            margin-bottom: 1rem;
        }

        .faq-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .faq-item {
            background: linear-gradient(135deg, #fce4ec, #f8bbd0);
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            font-weight: bold;
            color: #333;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
        }

        .faq-question:hover {
            background: rgba(255,255,255,0.3);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
            background: white;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 1.5rem;
        }

        /* Services */
        .services {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #fce4ec, #f8bbd0);
            overflow: hidden;
        }

        .services h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #e91e63;
            margin-bottom: 1rem;
        }

        .services-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .carousel-container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            overflow: hidden;
            padding: 0 4rem;
        }

        .carousel-track {
            display: flex;
            gap: 1.5rem;
            transition: transform 0.3s ease;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 1rem 0;
        }

        .carousel-track::-webkit-scrollbar {
            display: none;
        }

        .service-card {
            min-width: 250px;
            max-width: 250px;
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            flex-shrink: 0;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 0.8rem;
        }

        .service-card h3 {
            color: #e91e63;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }

        .service-card p {
            color: #666;
            margin-bottom: 1rem;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            color: #e91e63;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            z-index: 10;
            transition: all 0.3s;
        }

        .carousel-btn:hover {
            background: #e91e63;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-btn.prev {
            left: 0;
        }

        .carousel-btn.next {
            right: 0;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(233, 30, 99, 0.3);
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background: #e91e63;
            width: 30px;
            border-radius: 6px;
        }

        /* Benefits */
        .benefits {
            padding: 5rem 2rem;
            background: white;
        }

        .benefits h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #e91e63;
            margin-bottom: 1rem;
        }

        .benefits-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .benefit-card {
            background: linear-gradient(135deg, #fce4ec, #f8bbd0);
            padding: 2.5rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        .benefit-icon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
        }

        .benefit-card h3 {
            color: #e91e63;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .benefit-card p {
            color: #666;
            line-height: 1.8;
        }

        /* Testimonials */
        .testimonials {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #dfcdd3, #ffffff);
        }

        .testimonials h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #e91e63;
            margin-bottom: 3rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .stars {
            color: #FFD700;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            color: #666;
            font-style: italic;
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .testimonial-author {
            font-weight: bold;
            color: #e91e63;
        }

        /* About */
        .about {
            padding: 5rem 2rem;
            background: white;
            max-width: 1400px;
            margin: 0 auto;
        }

        .about h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #e91e63;
            margin-bottom: 1rem;
        }

        .about-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .about-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .about-card {
            background: linear-gradient(135deg, #fce4ec, #f8bbd0);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .about-card h3 {
            color: #e91e63;
            margin-bottom: 1.5rem;
            font-size: 1.7rem;
        }

        .about-card p {
            color: #666;
            line-height: 1.9;
            font-size: 1.05rem;
        }

        /* Process Steps */
        .process {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #fce4ec, #f8bbd0);
        }

        .process h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #e91e63;
            margin-bottom: 3rem;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .process-step {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            position: relative;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .step-number {
            background: #e91e63;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem;
        }

        .process-step h3 {
            color: #e91e63;
            margin-bottom: 1rem;
        }

        /* Contact */
        .contact {
            padding: 5rem 2rem;
            background: white;
            text-align: center;
        }

        .contact h2 {
            font-size: 2.5rem;
            color: #e91e63;
            margin-bottom: 1rem;
        }

        .contact-subtitle {
            font-size: 1.3rem;
            color: #666;
            margin-bottom: 3rem;
        }

        .contact-info {
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(135deg, #fce4ec, #f8bbd0);
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .contact-item {
            background: white;
            padding: 2rem;
            border-radius: 10px;
        }

        .contact-item-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact-item p {
            margin-bottom: 0.5rem;
            color: #666;
        }

        .contact-item a {
            color: #e91e63;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: bold;
        }

        /* Footer */
        footer {
            background: #333;
            color: white;
            padding: 3rem 2rem;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #f8bbd0;
        }

        .footer-security {
            margin: 2rem 0;
            padding: 1rem;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
        }

        /* Floating Button */
        .floating-cta {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 999;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .button-container {
            text-align: center;
            margin: 2rem 0;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .carousel-track {
                animation: scroll 30s linear infinite;
            }

            .hero-stats {
                gap: 1rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .carousel-container {
                padding: 0 3rem;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }
   @media (max-width: 768px) {
            /* Header */
            header {
                padding: 1rem;
            }

            .logo {
                font-size: 1.2rem;
                width: auto;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            /* Hero */
            .hero {
                padding: 4rem 1rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .hero-stats {
                gap: 1rem;
                flex-direction: column;
            }

            .stat-number {
                font-size: 2rem;
            }

            /* Trust Section */
            .trust-section {
                padding: 2rem 1rem;
            }

            .trust-badges {
                gap: 1rem;
                flex-direction: column;
            }

            .trust-badge {
                padding: 1rem;
                width: 100%;
            }

            /* Hook */
            .hook {
                padding: 3rem 1rem;
            }

            .hook h2 {
                font-size: 1.8rem;
            }

            .hook-subtitle {
                font-size: 1rem;
            }

            .hook-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .hook-card {
                padding: 1.5rem;
            }

            /* Image Section */
            .image-section {
                padding: 3rem 1rem;
            }

            .image-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .image-card {
                height: 250px;
            }

            .image-card h3 {
                font-size: 1.5rem;
            }

            /* Simulator */
            .simulator {
                padding: 3rem 1rem;
            }

            .simulator h2 {
                font-size: 1.8rem;
            }

            .simulator-container {
                padding: 1.5rem;
            }

            label {
                font-size: 1rem;
            }

            .value-display {
                font-size: 1.5rem;
            }

            .result-item {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }

            /* Security Info */
            .security-info {
                padding: 3rem 1rem;
            }

            .security-info h2 {
                font-size: 1.8rem;
            }

            .security-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            /* FAQ */
            .faq {
                padding: 3rem 1rem;
            }

            .faq h2 {
                font-size: 1.8rem;
            }

            .faq-question {
                padding: 1rem;
                font-size: 1rem;
            }

            .faq-answer {
                padding: 0 1rem;
            }

            /* Services */
            .services {
                padding: 3rem 1rem;
            }

            .services h2 {
                font-size: 1.8rem;
            }

            .carousel-container {
                padding: 0 2rem;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .service-card {
                min-width: 220px;
                max-width: 220px;
            }

            /* Benefits */
            .benefits {
                padding: 3rem 1rem;
            }

            .benefits h2 {
                font-size: 1.8rem;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .benefit-card {
                padding: 2rem;
            }

            /* Testimonials */
            .testimonials {
                padding: 3rem 1rem;
            }

            .testimonials h2 {
                font-size: 1.8rem;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            /* About */
            .about {
                padding: 3rem 1rem;
            }

            .about h2 {
                font-size: 1.8rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-card {
                padding: 2rem;
            }

            /* Process */
            .process {
                padding: 3rem 1rem;
            }

            .process h2 {
                font-size: 1.8rem;
            }

            .process-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            /* Contact */
            .contact {
                padding: 3rem 1rem;
            }

            .contact h2 {
                font-size: 1.8rem;
            }

            .contact-subtitle {
                font-size: 1.1rem;
            }

            .contact-info {
                padding: 2rem 1rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            /* Footer */
            footer {
                padding: 2rem 1rem;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }

            /* Floating CTA */
            .floating-cta {
                bottom: 1rem;
                right: 1rem;
            }

            .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }

            /* Button Container */
            .button-container {
                margin: 1rem 0;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }

            .hero p {
                font-size: 0.9rem;
            }

            .hook h2, .simulator h2, .security-info h2, 
            .faq h2, .services h2, .benefits h2, 
            .testimonials h2, .about h2, .process h2, 
            .contact h2 {
                font-size: 1.5rem;
            }

            .service-card {
                min-width: 180px;
                max-width: 180px;
                padding: 1rem;
            }

            .service-card h3 {
                font-size: 1rem;
            }

            .carousel-container {
                padding: 0 1.5rem;
            }

            .carousel-btn {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }