
        :root {
            --background: #ffffff;
            --foreground: #1a1a1a;
            --primary: #c0973f;
            --primary-foreground: #ffffff;
            --secondary: #d4af7a;
            --secondary-foreground: #1a1a1a;
            --muted: #f8f9fa;
            --muted-foreground: #6c757d;
            --border: #e9ecef;
            --card: #ffffff;
            --card-foreground: #1a1a1a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background-color: var(--primary);
            color: var(--primary-foreground);
            text-decoration: none;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .btn:hover {
            background-color: #a87d2f;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(192, 151, 63, 0.3);
        }

        .btn-lg {
            padding: 1.5rem 2.5rem;
            font-size: 1.125rem;
        }

        .btn-full {
            width: 100%;
            justify-content: center;
        }

        .card {
            background-color: var(--card);
            border-radius: 1rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid var(--border);
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .input:focus {
            outline: none;
            border-color: var(--primary);
        }

        .label {
            display: block;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--foreground);
        }

        .header {
            border-bottom: 1px solid var(--border);
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 50;
        }

        .hero {
            padding: 8rem 1rem;
            background: linear-gradient(135deg, rgba(192, 151, 63, 0.1) 0%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 1) 70%, rgba(212, 175, 122, 0.1) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23c0973f" stroke-width="1" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>'),
                radial-gradient(circle at 20% 80%, rgba(192, 151, 63, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 122, 0.12) 0%, transparent 50%);
            opacity: 0.8;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(192, 151, 63, 0.4), transparent);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-image {
            width: 100%;
            max-width: 600px;
            height: 300px;
            margin: 2rem auto;
            background: linear-gradient(135deg, rgba(192, 151, 63, 0.1), rgba(212, 175, 122, 0.1));
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 300"><rect width="100%" height="100%" fill="%23f8f9fa"/><circle cx="150" cy="150" r="80" fill="%23c0973f" opacity="0.1"/><circle cx="450" cy="100" r="60" fill="%23d4af7a" opacity="0.1"/><circle cx="400" cy="250" r="40" fill="%23c0973f" opacity="0.1"/><path d="M 100 100 L 200 200 L 300 150 L 400 250 L 500 100" stroke="%23c0973f" stroke-width="3" fill="none" opacity="0.3"/></svg>');
            background-size: cover;
        }

        .hero-image-text {
            position: relative;
            z-index: 2;
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: 600;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 2rem;
            line-height: 1.1;
        }

        .hero .highlight {
            color: var(--primary);
            display: block;
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--muted-foreground);
            margin-bottom: 3rem;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(192, 151, 63, 0.15), rgba(212, 175, 122, 0.1));
            color: var(--primary);
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 2rem;
            border: 1px solid rgba(192, 151, 63, 0.2);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(192, 151, 63, 0.1);
            transition: all 0.3s ease;
        }

        .badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(192, 151, 63, 0.2);
            background: linear-gradient(135deg, rgba(192, 151, 63, 0.2), rgba(212, 175, 122, 0.15));
        }

        .section {
            padding: 6rem 1rem;
            position: relative;
        }

        .section:not(.stats-section) {
            background: linear-gradient(135deg, rgba(192, 151, 63, 0.01) 0%, rgba(255, 255, 255, 1) 50%, rgba(212, 175, 122, 0.01) 100%);
            position: relative;
        }

        .section:not(.stats-section)::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="waves" width="100" height="20" patternUnits="userSpaceOnUse"><path d="M 0 10 Q 25 0 50 10 T 100 10" stroke="%23c0973f" stroke-width="1" fill="none" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23waves)"/></svg>');
            opacity: 0.3;
        }

        .section:not(.stats-section) .container {
            position: relative;
            z-index: 2;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: var(--muted-foreground);
            text-align: center;
            max-width: 42rem;
            margin: 0 auto 3rem;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: 1fr auto 1fr auto 1fr;
            gap: 2rem;
            position: relative;
            align-items: start;
        }

        .step-card {
            text-align: center;
            transition: all 0.3s ease;
            padding: 2rem 1rem;
            position: relative;
        }

        .step-card:hover {
            transform: translateY(-4px);
        }

        .step-visual {
            width: 100%;
            height: 120px;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, rgba(192, 151, 63, 0.05), rgba(212, 175, 122, 0.03));
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .step-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background-size: 80%;
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.7;
        }

        .step-card:nth-child(1) .step-visual::before {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><rect width="100%" height="100%" fill="%23f8f9fa"/><rect x="20" y="30" width="80" height="60" rx="8" fill="%23c0973f" opacity="0.1"/><rect x="30" y="40" width="60" height="8" rx="4" fill="%23c0973f" opacity="0.3"/><rect x="30" y="55" width="40" height="8" rx="4" fill="%23c0973f" opacity="0.3"/><rect x="30" y="70" width="50" height="8" rx="4" fill="%23c0973f" opacity="0.3"/><circle cx="90" cy="40" r="8" fill="%23c0973f" opacity="0.2"/></svg>');
        }

        .step-card:nth-child(2) .step-visual::before {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><rect width="100%" height="100%" fill="%23f8f9fa"/><circle cx="60" cy="50" r="25" fill="%23c0973f" opacity="0.1"/><circle cx="60" cy="50" r="15" fill="%23c0973f" opacity="0.2"/><path d="M 30 80 Q 60 100 90 80" stroke="%23c0973f" stroke-width="3" fill="none" opacity="0.3"/><circle cx="40" cy="85" r="3" fill="%23c0973f" opacity="0.4"/><circle cx="80" cy="85" r="3" fill="%23c0973f" opacity="0.4"/></svg>');
        }

        .step-card:nth-child(3) .step-visual::before {
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 120"><rect width="100%" height="100%" fill="%23f8f9fa"/><rect x="25" y="40" width="70" height="40" rx="8" fill="%23c0973f" opacity="0.1"/><rect x="35" y="50" width="50" height="8" rx="4" fill="%23c0973f" opacity="0.3"/><rect x="35" y="65" width="30" height="8" rx="4" fill="%23c0973f" opacity="0.3"/><circle cx="80" cy="55" r="8" fill="%23c0973f" opacity="0.2"/><path d="M 20 60 L 30 70 L 40 60" stroke="%23c0973f" stroke-width="2" fill="none" opacity="0.4"/></svg>');
        }

        .step-icon {
            width: 5rem;
            height: 5rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(192, 151, 63, 0.2);
        }

        .step-card:hover .step-icon {
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(192, 151, 63, 0.3);
        }

        .step-number {
            width: 4rem;
            height: 4rem;
            background: var(--primary);
            color: var(--primary-foreground);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            line-height: 1;
            transition: all 0.3s ease;
            position: relative;
            top: 0;
        }

        .step-card:hover .step-number {
            transform: scale(1.05);
        }



        .step-card {
            text-align: center;
            transition: all 0.3s ease;
            padding: 2rem 1rem;
            position: relative;
            z-index: 2;
        }

        .step-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--foreground);
            line-height: 1.2;
        }

        .step-description {
            color: #6b7280;
            font-size: 0.95rem;
            line-height: 1.5;
            max-width: 280px;
            margin: 0 auto;
        }

        .step-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 2rem;
            margin: 0 1rem;
            align-self: center;
        }

        .step-arrow svg {
            width: 2rem;
            height: 2rem;
        }

        .stats-section {
            background: linear-gradient(135deg, rgba(192, 151, 63, 0.08), rgba(212, 175, 122, 0.05));
            position: relative;
            overflow: hidden;
        }



        .stats-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23c0973f" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
            opacity: 0.5;
        }

        .stats-section .container {
            position: relative;
            z-index: 2;
        }



        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .grid-2::after {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 1px;
            background-color: #e5e7eb;
            transform: translateX(-50%);
        }

        .stat-card {
            text-align: center;
            padding: 2rem 1.5rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .stat-card:hover {
            transform: translateY(-4px);
        }

        .stat-number {
            font-size: 4.5rem;
            font-weight: 800;
            color: #c0973f;
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
            display: block;
        }

        .stat-card:hover .stat-number {
            transform: scale(1.05);
        }

        .stat-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #374151;
            line-height: 1.3;
        }

        .stat-icon {
            width: 4rem;
            height: 4rem;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(192, 151, 63, 0.2);
        }

                 .stat-card:hover .stat-icon {
             transform: scale(1.05);
             box-shadow: 0 8px 25px rgba(192, 151, 63, 0.3);
         }

         .stats-cta {
             text-align: center;
             margin-top: 3rem;
         }

                   .stats-cta .btn {
              background-color: #c0973f;
              border-color: #c0973f;
              color: white;
              padding: 1rem 2rem;
              border-radius: 0.5rem;
              font-weight: 600;
              transition: all 0.3s ease;
          }

          .stats-cta .btn:hover {
              background-color: #a87d2f;
              border-color: #a87d2f;
              transform: translateY(-2px);
          }

        .form-section {
            background: linear-gradient(135deg, rgba(192, 151, 63, 0.05), rgba(212, 175, 122, 0.05));
        }

        .form-card {
            max-width: 42rem;
            margin: 0 auto;
        }

        .form-content {
            padding: 2.5rem;
        }

        .form-title {
            font-size: 2.5rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 1rem;
        }

        .form-subtitle {
            color: var(--muted-foreground);
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        .select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid var(--border);
            border-radius: 0.5rem;
            font-size: 1rem;
            background-color: var(--background);
            color: var(--foreground);
        }

        .select:focus {
            outline: none;
            border-color: var(--primary);
        }

        .footer {
            background-color: var(--foreground);
            color: white;
            padding: 2rem 1rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }



        .footer .container {
            position: relative;
            z-index: 2;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .footer-logo .icon {
            background-color: rgba(192, 151, 63, 0.2);
            padding: 0.5rem;
            border-radius: 0.75rem;
        }
        
        .footer-links {
            margin: 1.5rem 0;
            display: flex;
            justify-content: center;
            gap: 2rem;
        }
        
        .footer-links a {
            color: #9ca3af;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary);
        }

                 .footer-text {
             color: #9ca3af;
             font-size: 0.875rem;
         }

         .footer-disclaimer {
             margin-top: 2rem;
             padding-top: 2rem;
             border-top: 1px solid rgba(255, 255, 255, 0.1);
             color: #9ca3af;
             font-size: 0.75rem;
             line-height: 1.5;
             max-width: 800px;
             margin: 0 auto 1rem auto;
             text-align: left;
         }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .stat-number {
                font-size: 4rem;
            }
            
            .grid-2 {
                grid-template-columns: 1fr;
                max-width: 100%;
            }

            .grid-2::after {
                display: none;
            }

            .grid-3 {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .step-arrow {
                display: none;
            }

            .step-card {
                padding: 1.5rem 1rem;
            }

            .step-number {
                width: 3rem;
                height: 3rem;
                font-size: 1.25rem;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 0;
            }
            
            .section-subtitle {
                margin: 0;
            }
            
            .stat-card {
                padding: 1rem;
            }
        }

        /* Legal Pages Specific Styles */
        .legal-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0rem 1rem;
        }

        .legal-header {
            border-bottom: 1px solid var(--border);
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            margin-bottom: 3rem;
        }

        .legal-header-logo {
            display: flex;
            align-items: center;
            justify-content: flex-start;
        }

        .legal-header-logo img {
            height: 40px;
            width: auto;
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--foreground);
        }

        .page-subtitle {
            text-align: center;
            color: var(--muted-foreground);
            margin-bottom: 3rem;
            font-size: 1.125rem;
        }

        .content-section {
            margin-bottom: 2.5rem;
        }

        .content-section h3 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--foreground);
            line-height: 1.2;
        }

        .content-section p, .content-section ul {
            margin-bottom: 1rem;
            color: var(--muted-foreground);
        }

        .content-section ul {
            padding-left: 1.5rem;
        }

        .content-section li {
            margin-bottom: 0.5rem;
        }

        .content-section strong {
            color: var(--foreground);
        }

        .content-section a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .content-section a:hover {
            color: #a87d2f;
        }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            background-color: var(--primary);
            color: var(--primary-foreground);
            text-decoration: none;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
        }

        .back-link:hover {
            background-color: #a87d2f;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(192, 151, 63, 0.3);
        }

        .footer-logo img {
            height: 32px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        /* Legal Pages Mobile Styles */
        @media (max-width: 768px) {
            .legal-container {
                padding: 0.75rem;
                max-width: 95%;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .content-section {
                margin-bottom: 2rem;
            }
        }
   