:root {
            --primary: #0F766E; /* Teal 700 */
            --primary-dark: #0d655e;
            --primary-light: #f0fdfa; /* Teal 50 */
            --text-main: #0a0a0a;
            --text-muted: #525252;
            --bg-body: #ffffff;
            --bg-alt: #f8fafc;
            --border: #e5e7eb;
        }

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

        body {
            font-family: 'Inter', system-ui, sans-serif;
            background-color: var(--bg-body);
            color: var(--text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        a { text-decoration: none; color: inherit; transition: all 0.2s; }

        /* Utilities */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            width: 100%;
        }
        
        .main-content { flex: 1; } /* For sticky footer */

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            border: 1px solid transparent;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(15, 118, 110, 0.2);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }
        .btn-outline:hover {
            background: var(--primary-light);
        }

        /* Nav */
        nav {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
        }
        .nav-inner {
            height: 70px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.02em;
        }
        .nav-links {
            display: none;
        } 
        @media(min-width: 768px) {
            .nav-links { display: flex; gap: 2rem; align-items: center; font-weight: 500; font-size: 0.95rem; }
            .nav-links a:hover { color: var(--primary); }
        }
        
        /* Typography Content (for legal pages) */
        .prose {
            max-width: 800px;
            margin: 4rem auto;
        }
        .prose h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1.5rem; color: #111827; }
        .prose h2 { font-size: 1.75rem; font-weight: 700; margin-top: 2.5rem; margin-bottom: 1rem; color: #111827; }
        .prose p { margin-bottom: 1.25rem; color: var(--text-muted); }
        .prose ul { margin-bottom: 1.25rem; padding-left: 1.5rem; color: var(--text-muted); }
        .prose li { margin-bottom: 0.5rem; }

        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--bg-alt);
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid var(--border);
        }
        .form-group { margin-bottom: 1.5rem; }
        .form-label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: #374151; }
        .form-control {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--border);
            border-radius: 6px;
            font-family: inherit;
            transition: border-color 0.2s;
        }
        .form-control:focus { outline: none; border-color: var(--primary); ring: 2px solid var(--primary-light); }

        /* Hero */
        .hero {
            padding: 6rem 0 4rem;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            color: #111827;
        }
        .hero h1 span {
            color: var(--primary);
        }
        .hero p {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto 2.5rem;
        }
        .hero-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }
        
        .hero-image-container {
            margin-top: 4rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
            border: 1px solid var(--border);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            background: #f1f5f9;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
        }

        /* Features */
        .features { padding: 6rem 0; background: var(--bg-alt); }
        .section-header { text-align: center; margin-bottom: 4rem; }
        .section-header h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; color: #111827; }
        .section-header p { font-size: 1.125rem; color: var(--text-muted); }
        
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }
        .card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }
        .card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
        .icon-box {
            width: 50px;
            height: 50px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .card h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; color: #111827; }
        .card p { color: var(--text-muted); font-size: 0.95rem; }

        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            background: var(--primary);
            color: white;
            text-align: center;
        }
        .cta-section h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
        .cta-section p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 2rem; }
        .btn-white {
            background: white;
            color: var(--primary);
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            border-radius: 8px;
            font-weight: 600;
        }
        .btn-white:hover {
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: #111827;
            color: #9ca3af;
            padding: 4rem 0 2rem;
            margin-top: auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-col h4 {
            color: white;
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 0.75rem; }
        .footer-col ul li a:hover { color: white; }
        
        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 2rem;
            text-align: center;
            font-size: 0.9rem;
        }

        @media(max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero-actions { flex-direction: column; }
            .btn { width: 100%; }
            .nav-links { display: none; } /* Simple hiding for mobile for now */
        }
