
        :root {
            --primary: #a8366b;
            --secondary: #8b2d5a;
            --accent: #d94a84;
            --dark: #1f2937;
            --light: #fdf2f8;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark);
            overflow-x: hidden;
        }
        
        /* Logo */
        .logo-container {
            position: absolute;
            top: 0px;
            left: 11%;
            transform: translateX(-50%);
            z-index: 10;
            background: white;
            padding: 12px 30px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(168, 54, 107, 0.15);
        }
        
        .logo-container img {
            height: 60px;
            width: auto;
        }
        
        @media (max-width: 768px) {
            .logo-container {
                top:0px;
                padding: 10px 20px 10px 20px;
                left: 50%;
            }
            
            .logo-container img {
                height: 45px;
            }
            .hero-title {
               text-align: center !important;
            }
            .hero-subtitle{text-align: center;}
            .hero-text{text-align: center;}
        }
        
        /* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #a8366b 0%, #781643 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.15), transparent 45%),
    radial-gradient(circle at bottom left, rgba(0,0,0,0.15), transparent 45%);
  z-index: 0;
}
.hero-badge {
  background: #eef2ff;
  color: #8b2d5a;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 14px;
  display: block;
  max-width: 350px;
  font-weight: 500;
  margin-top: 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
    color: #fff;
}

.hero-subtitle {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
}

.hero-text {
  font-size: 1.05rem;
  color: #fff;
  max-width: 520px;
}

.hero-collage {
  position: relative;
  height: 420px;
}

.hero-collage img {
  position: absolute;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Image positions */
.img-1 {
  width: 60%;
  height: 55%;
  top: 0;
  left: 0;
}

.img-2 {
  width: 45%;
  height: 45%;
  top: 0;
  right: 0;
}

.img-3 {
  width: 45%;
  height: 45%;
  bottom: 0;
  left: 0;
}

.img-4 {
  width: 60%;
  height: 55%;
  bottom: 0;
  right: 0;
}
        
        /* Trust Badges */
        .trust-section {
            background: white;
            padding: 40px 0;
            margin-top: -40px;
            position: relative;
            z-index: 3;
            border-radius: 30px 30px 0 0;
        }
        
        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding:0px;
            transition: transform 0.3s ease;
        }
        
        .trust-item:hover {
            transform: translateX(5px);
        }
        
        .trust-icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #a8366b 0%, #c94884 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .trust-icon::before {
            content: '✓';
            color: white;
            font-size: 14px;
            font-weight: bold;
        }
        
        .trust-text {
            font-size: 1rem;
            color: var(--dark);
            font-weight: 500;
        }
        
        /* Form Section */
        .form-section {
            background: linear-gradient(to bottom, white 0%, var(--light) 100%);
            padding: 0px 0px 40px 0px;
        }
        
        .form-container {
            background: white;
            border-radius: 24px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            border: 1px solid rgba(168, 54, 107, 0.1);
            position: relative;
        }
        
        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #a8366b 0%, #c94884 100%);
            border-radius: 24px 24px 0 0;
        }
        
        .form-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            text-align: center;
        }
        
        .form-subtitle {
            color: #6b7280;
            font-size: 1.1rem;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
        
        .form-control, .form-select {
            padding: 14px 18px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(168, 54, 107, 0.1);
        }
        
        .submit-btn {
            background: linear-gradient(135deg, #a8366b 0%, #c94884 100%);
            color: white;
            border: none;
            padding: 18px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 12px;
            width: 100%;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(168, 54, 107, 0.4);
        }
        
        .reassurance {
            text-align: center;
            color: #6b7280;
            font-size: 0.9rem;
            margin-top: 15px;
        }
        
        /* Exit Section */
        .exit-section {
            background: var(--dark);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        .exit-section h3{
            color: #fff !important;
        }
        .exit-link {
            color: #f9a8d4;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .exit-link:hover {
            color: white;
            gap: 15px;
        }
        
        /* Footer */
        .footer {
            background: #232323;
            color: #ffffff;
            padding: 40px 0;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-copyright {
            color: #cccccc;
            font-size: 0.95rem;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
            color: white;
        }
        
        .social-link svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .form-container {
                padding: 30px 20px;
            }
            
            .form-title {
                font-size: 1.8rem;
            }
            
            .hero-image {
                transform: none;
                margin-top: 30px;
            }
            
            .trust-item {
                font-size: 0.9rem;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fade-in {
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .animate-delay-1 { animation-delay: 0.2s; opacity: 0; }
        .animate-delay-2 { animation-delay: 0.4s; opacity: 0; }
        .animate-delay-3 { animation-delay: 0.6s; opacity: 0; }
