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

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #1e2a3a;
            line-height: 1.5;
            padding-top: 100px;
            scroll-behavior: smooth;
        }

        /* FIXED HEADER (Matches Free Site) */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 4px 16px rgba(0, 20, 40, 0.08);
            z-index: 1000;
        }

        .logo-row {
            background: white;
            padding: 0.6rem 2rem;
            border-bottom: 1px solid rgba(13, 71, 161, 0.1);
        }

        .company-logo {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.75rem 2rem;
        }

        .logo-group {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .company-logo img {
            height: 56px;
            width: auto;
            display: block;
            border-radius: 12px;
        }

        .slogan-text {
            font-size: 1.25rem;
            font-weight: 600;
            color: #0d47a1;
            letter-spacing: -0.01em;
            background: #e3f2fd;
            padding: 0.4rem 1.4rem;
            border-radius: 40px;
            white-space: nowrap;
            border: 1px solid rgba(13,71,161,0.2);
        }

        .header-cta {
            display: flex;
            gap: 12px;
        }

        .header-cta a {
            background: #0d47a1;
            color: white;
            text-decoration: none;
            padding: 0.4rem 1.4rem;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: 0.2s;
            white-space: nowrap;
        }

        .header-cta a:hover {
            background: #1565c0;
        }

        .header-cta a.signup {
            background: #4CAF50;
        }

        .header-cta a.signup:hover {
            background: #3d8b40;
        }

       .nav-row {
            background: #0d47a1;
            color: white;
            width: 100%;
        }
        .main-nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            padding: 0.1rem 2rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.2rem;
        }
        .nav-links li a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 0.4rem 1.2rem;
            font-weight: 500;
            border-radius: 30px;
            transition: background 0.2s;
            font-size: 0.95rem;
        }
        .nav-links li a:hover { background: #4CAF50; }
        .nav-links li a.active {
        		border-bottom: 5px solid #4CAF50;
        		background: transparent;
        		border-radius: 0;
    		}


        /* Main Content */
        .page-wrapper {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-container {
            max-width: 550px;
            width: 100%;
            margin: 40px auto 40px;  /* Top margin added */
        }

        .contact-card {
            background: white;
            border-radius: 32px;
            padding: 2rem;
            box-shadow: 0 8px 20px rgba(0, 20, 50, 0.06);
            border: 1px solid rgba(13, 71, 161, 0.08);
        }

        .page-title {
            text-align: center;
            margin-bottom: 1.5rem;
        }

.page-title h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

        .page-title p {
            color: #666;
            font-size: 0.9rem;
        }

        .info-box {
            background: #e3f2fd;
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .info-box i {
            font-size: 1.5rem;
            color: #0d47a1;
        }

        .info-box p {
            color: #555;
            font-size: 0.85rem;
            margin: 0;
        }

        .form-group {
            margin-bottom: 1.5rem;
            width: 100%;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #0d47a1;
            font-size: 0.95rem;
        }

        label .required {
            color: #e53935;
            margin-left: 4px;
        }

        input, select, textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #8aa0c0;
            border-radius: 14px;
            font-size: 1rem;
            transition: all 0.3s;
            font-family: inherit;
            background: white;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #0d47a1;
            box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
        }

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

        /* Honeypot field */
        .honeypot {
            position: absolute;
            left: -9999px;
            top: -9999px;
            opacity: 0;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        .submit-btn {
            width: 100%;
            padding: 16px 28px;
            background: linear-gradient(105deg, #0d47a1, #1565c0);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 8px 18px rgba(13, 71, 161, 0.3);
            transition: all 0.3s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(13, 71, 161, 0.4);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .error-message {
            background: #ffebee;
            color: #c62828;
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 1rem;
            display: none;
            font-size: 0.9rem;
        }

        .success-message {
            background: #e8f5e9;
            color: #2e7d32;
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 1rem;
            display: none;
        }

        .spinner {
            display: inline-block;
            width: 18px;
            height: 18px;
            border: 2px solid white;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 0.6s linear infinite;
            margin-right: 8px;
            vertical-align: middle;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .summary-card {
            background: #f5f5f5;
            border-radius: 12px;
            padding: 1rem;
            text-align: left;
            margin: 1rem 0;
        }

        .summary-card h4 {
            color: #0d47a1;
            margin-bottom: 0.75rem;
            font-size: 1rem;
        }

        .summary-card p {
            margin: 0.5rem 0;
            font-size: 0.9rem;
            word-break: break-word;
        }

        .summary-card strong {
            color: #333;
            min-width: 70px;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(105deg, #0d47a1, #1565c0);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(13, 71, 161, 0.3);
        }

 		footer {
    			background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    			padding: 20px 24px;
    			text-align: center;
    			color: white;
    			margin-top: 0;
		}
        .footer-logo {
            text-align: center;
            margin: 20px 0 5px 0;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            body { 
        			padding-top: 0px !important; 
    			}
            .site-header { position: relative; }
            .logo-row { padding: 0.5rem 1rem; }
            .company-logo img { height: 42px; }
            .slogan-text { display: none; }
            .header-cta { flex-direction: column; gap: 6px; margin-left: auto; }
            .header-cta a { padding: 0.25rem 1rem; font-size: 0.8rem; min-width: 70px; }
            .main-nav { padding: 0.2rem 1rem; overflow-x: auto; }
            .nav-links { flex-wrap: nowrap; overflow-x: auto; white-space: nowrap; }
            .nav-links li a.active {
                border-bottom: 2px solid #4CAF50;
                background: transparent;
                border-radius: 0;
            }


    		  .contact-container {
        		  margin: 20px auto 40px;  /* Smaller top margin on mobile */
    		  }

            .contact-card {
                padding: 1.5rem;
            }

            .page-title h2 {
                font-size: 1.5rem;
            }

            input, select, textarea {
                padding: 12px 14px;
                font-size: 16px;
            }
   /* ==================================================================
       SAFARI-ONLY OVERRIDES (Android Chrome ignores this entirely)
       ================================================================== */
    @supports (-webkit-hyphens:none) {
		html {
        		font-size: 22px !important; /* Slightly scales up layout elements on dense screens, rendering 					identically to Android font-boosting */
    		}
	    
    		body {
        		font-size: 22px !important;
    		}

        /* Scale up the image height slightly on Safari to match the visual look */
        .company-logo img { 
            height: 52px !important; 
        }

        /* Scale up the CTA button text and tap padding targets for iOS Safari */
        .header-cta a {
            font-size: 0.95rem !important;      /* Bumps font from 0.8rem up */
            padding: 0.4rem 1.1rem !important;  /* Bumps padding from 0.25rem up */
        }

                /* Target all fields on the contact form to stay clean at 17px */
                #name,
                #email,
                #subject,
                #message {
                    font-size: 22px !important;
                    padding-top: 12px !important;
                    padding-bottom: 12px !important;
                }

                /* Ensure all text placeholders scale perfectly to 16px hints */
                #name::placeholder,
                #email::placeholder,
                #subject::placeholder,
                #message::placeholder {
                    font-size: 22px !important;
                }

	}

}

        @media (max-width: 480px) {
            .contact-card {
                padding: 1.25rem;
            }
        }

