:root {
            /* Brand Colors */
            --brand-magenta: #E51E63;
            --brand-indigo: #6C4DFF;
            --brand-cyan: #00AEEF;
            --brand-gradient: linear-gradient(90deg, #E51E63 0%, #6C4DFF 52%, #00AEEF 100%);
            
            /* Neutrals */
            --navy-900: #0B1B3B;
            --slate-700: #334155;
            --slate-100: #F1F5F9;
            --paper: #F8FAFC;
            --ink: #0F172A;
            
            /* Accents */
            --finance-gold: #D4A81E;
            --success: #16A34A;
            --warning: #D97706;
            --danger: #DC2626;
            --link: #0EA5E9;
            
            /* Typography */
            --font-heading: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
            
            /* Spacing */
            --section-padding: 5rem;
            --container-max: 1200px;
        }
        
        @media (max-width: 768px) {
            :root {
                --section-padding: 3rem;
            }
        }
        
        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--font-body);
            font-size: 18px;
            line-height: 1.6;
            color: var(--ink);
            background-color: var(--paper);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 600;
            letter-spacing: -0.5px;
            margin-bottom: 1.5rem;
        }
        
        h1 {
            font-size: 3.5rem;
            line-height: 1.14;
            font-weight: 700;
        }
        
        h2 {
            font-size: 2.5rem;
            line-height: 1.2;
        }
        
        h3 {
            font-size: 1.75rem;
            line-height: 1.28;
        }
        
        p {
            margin-bottom: 1.5rem;
        }
        
        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        section {
            padding: var(--section-padding) 0;
            position: relative;
        }
        
        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 0.875rem 1.75rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
            font-family: var(--font-body);
            font-size: 1rem;
        }
        
        .btn-primary {
            background: var(--brand-gradient);
            color: white;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--navy-900);
            border: 2px solid var(--navy-900);
        }
        
        .btn-secondary:hover {
            background: var(--navy-900);
            color: white;
        }
        
        /* Navigation */
        .navbar {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            max-width: var(--container-max);
            margin: 0 auto;
        }
        
        .logo {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.5rem;
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
        }
        
        .logo-img {
            height: 40px;
            margin-right: 10px;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            margin-left: 2rem;
        }
        
        .nav-link {
            text-decoration: none;
            color: var(--navy-900);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--brand-cyan);
        }
        
        /* Contact Section */
        .contact-section {
            background: var(--slate-100);
            min-height: 80vh;
            display: flex;
            align-items: center;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }
        
        @media (max-width: 968px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
        }
        
        .contact-info {
            padding: 2rem;
        }
        
        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }
        
        .contact-icon {
            background: var(--brand-gradient);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .contact-details h3 {
            margin-bottom: 0.5rem;
        }
        
        /* Form Styles */
        .contact-form {
            background: white;
            border-radius: 1.25rem;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--navy-900);
        }
        
        .form-control {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1px solid #ddd;
            border-radius: 0.5rem;
            font-family: var(--font-body);
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--brand-cyan);
            box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.1);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-error {
            color: var(--danger);
            font-size: 0.875rem;
            margin-top: 0.5rem;
            display: block;
        }
        
        .form-success {
            background: var(--success);
            color: white;
            padding: 1rem;
            border-radius: 0.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        /* Footer */
        .footer {
            background: var(--navy-900);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-heading {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.25rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-link {
            margin-bottom: 0.75rem;
        }
        
        .footer-link a {
            color: var(--slate-100);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-link a:hover {
            color: var(--brand-cyan);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid var(--slate-700);
            color: var(--slate-100);
            font-size: 0.875rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }
            
            .nav-menu {
                display: none; /* Would implement mobile menu toggle */
            }
        }