:root {
            --primary: #FF2D55;
            --primary-dark: #CC1A3D;
            --secondary: #1A1A1A;
            --bg: #FAFAFA;
            --text: #2A2A2A;
            --text-muted: #666666;
            --border: #E0E0E0;
            --success: #00C853;
            --warning: #FFA726;
        }

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

        body {
            font-family: 'Work Sans', -apple-system, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: var(--secondary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 2rem;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                repeating-linear-gradient(
                    90deg,
                    transparent,
                    transparent 50px,
                    rgba(255, 45, 85, 0.03) 50px,
                    rgba(255, 45, 85, 0.03) 51px
                ),
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 50px,
                    rgba(255, 45, 85, 0.03) 50px,
                    rgba(255, 45, 85, 0.03) 51px
                );
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            animation: fadeInUp 1s ease-out;
        }

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

        .hero h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(3rem, 10vw, 7rem);
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
            line-height: 0.9;
            color: white;
            text-transform: uppercase;
        }

        .hero .highlight {
            color: var(--primary);
            display: block;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(255, 45, 85, 0.5); }
            to { text-shadow: 0 0 40px rgba(255, 45, 85, 0.8); }
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            color: #CCCCCC;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 1rem 3rem;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 45, 85, 0.3);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            color: var(--primary);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Section */
        section {
            padding: 5rem 0;
            animation: fadeIn 1s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            margin-bottom: 1rem;
            letter-spacing: 0.03em;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60%;
            height: 4px;
            background: var(--primary);
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            margin-bottom: 3rem;
            max-width: 700px;
        }

        /* Laws Section */
        .laws-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .law-card {
            background: white;
            padding: 2rem;
            border-left: 5px solid var(--primary);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .law-card:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 30px rgba(255, 45, 85, 0.15);
        }

        .law-card h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            letter-spacing: 0.05em;
            color: var(--primary);
        }

        .law-card .state {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        /* Rights Section */
        .rights-section {
            background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
            color: white;
        }

        .rights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .right-item {
            text-align: center;
            padding: 2rem;
            border: 2px solid rgba(255, 45, 85, 0.3);
            background: rgba(255, 255, 255, 0.03);
            transition: all 0.3s ease;
        }

        .right-item:hover {
            border-color: var(--primary);
            background: rgba(255, 45, 85, 0.1);
            transform: translateY(-5px);
        }

        .right-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .right-item h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            letter-spacing: 0.05em;
            color: var(--primary);
        }

        /* Form Section */
        .form-section {
            background: white;
        }

        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--bg);
            padding: 3rem;
            border: 2px solid var(--border);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
        }

        .required {
            color: var(--primary);
        }

        input[type="text"],
        input[type="email"],
        input[type="url"],
        select,
        textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid var(--border);
            background: white;
            font-family: 'Work Sans', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        input:focus,
        select:focus,
        textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 45, 85, 0.1);
        }

        textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
        }

        .checkbox-group input[type="checkbox"] {
            width: auto;
            margin-top: 0.25rem;
            cursor: pointer;
        }

        .checkbox-group label {
            font-weight: 400;
            text-transform: none;
            font-size: 0.95rem;
            cursor: pointer;
        }

        .submit-button {
            width: 100%;
            background: var(--primary);
            color: white;
            padding: 1.25rem 2rem;
            border: none;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            letter-spacing: 0.1em;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            margin-top: 1rem;
        }

        .submit-button:hover:not(:disabled) {
            background: var(--primary-dark);
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(255, 45, 85, 0.3);
        }

        .submit-button:disabled {
            background: #CCCCCC;
            cursor: not-allowed;
        }

        /* Success Message */
        .success-message {
            display: none;
            background: var(--success);
            color: white;
            padding: 2rem;
            text-align: center;
            margin-top: 2rem;
            font-weight: 600;
            animation: slideDown 0.5s ease-out;
        }

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

        .success-message.show {
            display: block;
        }

        /* Process Section */
        .process-section {
            background: linear-gradient(to bottom, var(--bg) 0%, white 100%);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
            position: relative;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            margin: 0 auto 1.5rem;
            box-shadow: 0 4px 20px rgba(255, 45, 85, 0.3);
        }

        .process-step h3 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            letter-spacing: 0.05em;
        }

        /* Footer */
        footer {
            background: var(--secondary);
            color: white;
            padding: 3rem 0;
            text-align: center;
        }

        .disclaimer {
            max-width: 800px;
            margin: 0 auto 2rem;
            font-size: 0.9rem;
            color: #999;
            line-height: 1.8;
        }

        footer p {
            color: #666;
            font-size: 0.9rem;
        }

        footer a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: white;
        }

        /* Utility */
        .text-center {
            text-align: center;
        }

        .mt-4 {
            margin-top: 2rem;
        }