 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #10b981;
            --primary-dark: #10b981;
            --secondary: #4f46e5;
            --accent: #10b981;
            --dark: #0f172a;
            --dark-light: #1e293b;
            --gray: #334155;
            --gray-light: #64748b;
            --text: #f8fafc;
            --text-dim: #cbd5e1;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--dark);
            color: var(--text);
            line-height: 1.6;
        }

        /* Popup Overlay */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(8px);
            z-index: 10000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            animation: fadeIn 0.3s ease-out;
        }

        .popup-overlay.hidden {
            display: none;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .popup-box {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border: 2px solid var(--primary);
            border-radius: 24px;
            max-width: 600px;
            width: 100%;
            padding: 3rem 2.5rem;
            position: relative;
            animation: slideUp 0.4s ease-out;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .popup-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: var(--text);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .popup-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .popup-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), #f97316);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .popup-box h2 {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .popup-price {
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--primary);
            margin: 1rem 0;
        }

        .popup-price span {
            font-size: 1.5rem;
            color: var(--text-dim);
        }

        .popup-features {
            list-style: none;
            margin: 2rem 0;
        }

        .popup-features li {
            padding: 0.7rem 0;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: var(--text-dim);
            font-size: 1.05rem;
        }

        .popup-features li::before {
            content: '✓';
            color: var(--accent);
            font-weight: 900;
            font-size: 1.3rem;
        }

        .popup-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .popup-btn {
            flex: 1;
            padding: 1.2rem;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .popup-btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
        }

        .popup-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 51, 102, 0.4);
        }

        .popup-btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text);
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

        .popup-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
        }

        /* Header */
        header {
            background: rgba(15, 23, 42, 0.95);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .logo img {
            width: auto;
            height: 50px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            margin: 0;
            padding: 0;
        }

        .nav-menu li a {
            color: var(--text-dim);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-menu li a:hover {
            color: var(--primary);
        }

        .header-cta {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.95rem;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .header-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 51, 102, 0.4);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8rem 2rem 4rem;
            background: 
                linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)),
                url('bg.webp') center/cover;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255, 51, 102, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 51, 102, 0.15);
            border: 1px solid rgba(255, 51, 102, 0.3);
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            margin-bottom: 2rem;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--primary);
        }

        .hero h1 {
            font-size: clamp(2.5rem, 7vw, 5rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: var(--text-dim);
            line-height: 1.7;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.95rem;
            color: var(--text-dim);
            font-weight: 500;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-btn {
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .hero-btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4);
        }

        .hero-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 51, 102, 0.6);
        }

        .hero-btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .hero-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
        }

        .disclaimer {
            background: rgba(239, 68, 68, 0.1);
            border: 1px solid rgba(239, 68, 68, 0.3);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            margin-bottom: 3rem;
            font-size: 0.95rem;
            color: #fca5a5;
        }

        .disclaimer strong {
            color: #ef4444;
        }

        /* Form Section */
        .form-section {
            padding: 5rem 2rem 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .form-section .hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }

        .form-section h1, .form-section h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .form-section .hero-subtitle {
            font-size: 1.3rem;
            color: var(--text-dim);
            margin-bottom: 2rem;
        }

        /* Form Wrapper */
        .form-wrapper {
            max-width: 700px;
            margin: 0 auto;
        }

        .form-container {
            background: var(--dark-light);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 3rem;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .form-grid {
            display: grid;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dim);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 1rem 1.2rem;
            background: var(--dark);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: var(--text);
            font-size: 1rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
        }

        .form-group select {
            cursor: pointer;
        }

        .submit-btn {
            width: 100%;
            padding: 1.5rem;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border: none;
            border-radius: 12px;
            color: white;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 1rem;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(255, 51, 102, 0.4);
        }

        .form-note {
            text-align: center;
            color: var(--text-dim);
            font-size: 0.9rem;
        }

        .form-note span {
            color: var(--accent);
            font-weight: 600;
        }

        /* Info Sections */
        .info-section {
            padding: 5rem 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .info-section h2 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .info-block {
            background: var(--dark-light);
            padding: 2rem;
            border-radius: 16px;
            margin-bottom: 2rem;
            border-left: 4px solid var(--primary);
        }

        .info-block h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text);
        }

        .info-block p {
            color: var(--text-dim);
            line-height: 1.8;
        }

        /* Order Info Modal */
        .order-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(8px);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .order-modal.show {
            display: flex;
        }

        .order-content {
            background: var(--dark-light);
            border: 2px solid var(--accent);
            border-radius: 24px;
            padding: 3rem;
            max-width: 600px;
            width: 100%;
            text-align: center;
        }

        .order-content h3 {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
        }

        .order-details {
            background: var(--dark);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            text-align: left;
        }

        .order-details p {
            padding: 0.5rem 0;
            color: var(--text-dim);
        }

        .order-details strong {
            color: var(--text);
        }

        .contact-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .contact-btn {
            flex: 1;
            padding: 1rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            transition: all 0.3s;
        }

        .whatsapp-btn {
            background: #25d366;
            color: white;
        }

        .whatsapp-btn:hover {
            background: #1fb855;
            transform: translateY(-2px);
        }

        .telegram-btn {
            background: #0088cc;
            color: white;
        }

        .telegram-btn:hover {
            background: #006699;
            transform: translateY(-2px);
        }

        .close-modal {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: var(--text);
            padding: 0.8rem 2rem;
            border-radius: 8px;
            cursor: pointer;
            margin-top: 1rem;
            font-weight: 600;
        }

        /* Footer */
        footer {
            background: var(--dark-light);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem;
            text-align: center;
            color: var(--text-dim);
            font-size: 0.9rem;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
        }

        .pricing-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-dim);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .pricing-card {
            background: var(--dark-light);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            transition: all 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: rgba(255, 51, 102, 0.5);
            box-shadow: 0 20px 40px rgba(255, 51, 102, 0.2);
        }

        .pricing-card.featured {
            border-color: var(--primary);
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(255, 51, 102, 0.3);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-8px);
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 0.4rem 1.5rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .plan-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .plan-header h3 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .plan-desc {
            color: var(--text-dim);
            font-size: 0.95rem;
        }

        .plan-price {
            text-align: center;
            margin-bottom: 1rem;
        }

        .plan-price .currency {
            font-size: 1.5rem;
            vertical-align: top;
            color: var(--text-dim);
        }

        .plan-price .amount {
            font-size: 4rem;
            font-weight: 900;
            color: var(--primary);
        }

        .plan-price .period {
            font-size: 1.1rem;
            color: var(--text-dim);
        }

        .savings {
            text-align: center;
            background: rgba(16, 185, 129, 0.1);
            color: var(--accent);
            padding: 0.5rem;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .plan-features li {
            padding: 0.7rem 0;
            color: var(--text-dim);
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 0.95rem;
        }

        .plan-features li::before {
            content: '✓';
            color: var(--accent);
            font-weight: 900;
            font-size: 1.2rem;
        }

        .plan-btn {
            display: block;
            width: 100%;
            padding: 1.2rem;
            background: rgba(255, 51, 102, 0.1);
            border: 2px solid var(--primary);
            border-radius: 12px;
            color: var(--primary);
            text-align: center;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s;
        }

        .plan-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 51, 102, 0.4);
        }

        .plan-btn-featured {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            border: none;
        }

        .plan-btn-featured:hover {
            box-shadow: 0 15px 35px rgba(255, 51, 102, 0.5);
        }

        .pricing-note {
            text-align: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
        }

        .pricing-note p {
            color: var(--text-dim);
            margin: 0.5rem 0;
            font-size: 1rem;
        }

        /* RESPONSIVE STYLES ONLY - NOTHING ELSE CHANGED */
        @media (max-width: 968px) {
            nav {
                flex-wrap: wrap;
                padding: 1rem 1.5rem;
            }

            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                gap: 0;
                background: var(--dark-light);
                padding: 1rem 0;
                border-radius: 12px;
                margin-top: 1rem;
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-menu li {
                width: 100%;
            }

            .nav-menu li a {
                display: block;
                padding: 1rem 1.5rem;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .header-cta {
                order: 2;
            }

            .mobile-menu-toggle {
                order: 3;
            }

            .hero {
                min-height: 70vh;
                padding: 5rem 1.5rem 3rem;
            }

            .hero-stats {
                gap: 2rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .hero-btn {
                width: 100%;
                justify-content: center;
            }

            .form-section {
                padding: 3rem 1.5rem 2rem;
            }

            .form-container {
                padding: 2rem 1.5rem;
            }

            .popup-box {
                padding: 2rem 1.5rem;
            }

            .popup-buttons {
                flex-direction: column;
            }

            .popup-price {
                font-size: 2.5rem;
            }

            .contact-buttons {
                flex-direction: column;
            }

            .info-section {
                padding: 3rem 1.5rem;
            }

            .pricing-section {
                padding: 3rem 1.5rem;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .pricing-card.featured {
                transform: scale(1);
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 0.8rem 1rem;
            }

            .logo-text {
                font-size: 1.3rem;
            }

            .header-cta {
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }

            .hero {
                min-height: 60vh;
                padding: 4rem 1rem 2rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero-badge {
                font-size: 0.85rem;
                padding: 0.5rem 1rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .hero-stats {
                gap: 1.5rem;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 0.85rem;
            }

            .hero-btn {
                font-size: 0.95rem;
                padding: 0.9rem 1.5rem;
            }

            .form-section h2 {
                font-size: 1.8rem;
            }

            .form-container {
                padding: 1.5rem 1rem;
            }

            .form-group input,
            .form-group select {
                padding: 0.9rem 1rem;
                font-size: 0.95rem;
            }

            .submit-btn {
                padding: 1.2rem;
                font-size: 1rem;
            }

            .disclaimer {
                padding: 0.8rem 1rem;
                font-size: 0.85rem;
            }

            .pricing-card {
                padding: 2rem 1.5rem;
            }

            .plan-price .amount {
                font-size: 3rem;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .info-block {
                padding: 1.5rem 1rem;
            }

            .info-block h3 {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .logo-text {
                font-size: 1.1rem;
            }

            .hero {
                min-height: 50vh;
                padding: 3rem 1rem 2rem;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero-subtitle {
                font-size: 0.9rem;
            }

            .hero-stats {
                gap: 1.2rem;
            }

            .stat-item {
                flex: 1 1 calc(50% - 0.6rem);
                min-width: 120px;
            }

            .stat-number {
                font-size: 1.8rem;
            }

            .stat-label {
                font-size: 0.8rem;
            }

            .hero-btn {
                font-size: 0.85rem;
                padding: 0.8rem 1.2rem;
            }

            .form-section h2 {
                font-size: 1.5rem;
            }

            .form-container {
                padding: 1.2rem 0.8rem;
            }

            .submit-btn {
                padding: 1rem;
                font-size: 0.95rem;
            }

            .plan-price .amount {
                font-size: 2.5rem;
            }

            .plan-btn {
                padding: 0.9rem;
                font-size: 0.9rem;
            }

            .popup-box {
                padding: 1.2rem 0.8rem;
            }

            .popup-price {
                font-size: 2rem;
            }

            .order-content {
                padding: 1.2rem 0.8rem;
            }
        }

        @media (max-width: 360px) {
            .hero h1 {
                font-size: 1.5rem;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .plan-price .amount {
                font-size: 2rem;
            }
        }
		
		.form-image-container {
    width: calc(100% + 6rem);
    margin: -3rem -3rem 2rem -3rem;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.form-hero-image {
    width: 100%;
    height: auto;
    min-height: 200px;
    max-height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Tablet */
@media (max-width: 968px) {
    .form-image-container {
        width: calc(100% + 4rem);
        margin: -2rem -2rem 1.5rem -2rem;
    }
    
    .form-hero-image {
        max-height: 250px;
        min-height: 180px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .form-image-container {
        width: calc(100% + 3rem);
        margin: -2rem -1.5rem 1.5rem -1.5rem;
    }
    
    .form-hero-image {
        max-height: 220px;
        min-height: 150px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .form-image-container {
        width: calc(100% + 2.4rem);
        margin: -1.5rem -1.2rem 1.2rem -1.2rem;
    }
    
    .form-hero-image {
        max-height: 180px;
        min-height: 120px;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .form-image-container {
        width: calc(100% + 1.6rem);
        margin: -1.2rem -0.8rem 1rem -0.8rem;
    }
    
    .form-hero-image {
        max-height: 150px;
        min-height: 100px;
    }
}