
:root {
    --primary: #003366;
    --primary-dark: #002244;
    --primary-light: #004080;
    --secondary: #00a8cc;
    --secondary-dark: #0097b7;
    --accent: #00a86b;
    --dark: #333333;
    --light: #f8fafc;
    --lighter: #f0f9ff;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --border-radius: 12px;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 10px 30px rgba(0, 51, 102, 0.1);
    --transition: all 0.3s ease;
}

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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: rgb(0, 0, 64);
            background-color: #f8fafc;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            /* background-color: #003366; /* rgb(96, 187, 165); */
			background: linear-gradient(135deg, #003366 0%, #00BB88 100%);
			color: white;
            padding: 2rem 0 2rem;
            text-align: center;
            border-bottom: none; /* 5px solid #00a8cc; */
			margin-bottom: 0.5rem; /* Ensure small extra margin */
        }

        .logo {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            letter-spacing: -0.5px;
        }

        .tagline {
            font-size: 1.0rem;
            font-weight: 400;
            opacity: 0.9;
            max-width: 600px;
            margin: -1.5rem auto 1rem;
        }

        h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .lead-text {
            font-size: 1.5rem;
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto 3rem;
            opacity: 0.95;
        }

        .cta-button {
            display: inline-block;
            background-color: #003366; /* #00a8cc; */
            color: white;
            padding: 1rem 2.5rem;
            font-size: 1.125rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 168, 204, 0.3);
        }

        .cta-button:hover {
            background-color: #0097b7;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 168, 204, 0.4);
        }

        /* Content Sections */

        .content-section {
			background-color: white;
			padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }

        .content-section h2 {
			color: var(--primary);
			margin-bottom: 20px;
			font-size: 2.5rem;
			font-weight: 700;    
			text-align: center;
        }

        .content-section p {
			margin-bottom: 15px;
			color: var(--dark);
			font-size: 1.125rem;
			line-height: 1.8;
        }

        /* Quick Links Grid */

        .quick-links-grid {
			display: grid;
			grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
			gap: 1.5rem;
			margin: 2rem 0;
        }

        .quick-link-card {
			background: white;
			padding: 2rem;
			border-radius: var(--border-radius);
			box-shadow: var(--shadow);
			transition: var(--transition);
			text-align: center;
			text-decoration: none;
			color: var(--dark);
			border: 2px solid transparent;
        }

        .quick-link-card:hover {
			transform: translateY(-5px);
			box-shadow: var(--shadow-strong);
			border-color: var(--primary);
			color: var(--primary);
        }

        .quick-link-card i {
			font-size: 2.5rem;
			color: var(--primary);
			margin-bottom: 1rem;
			display: block;
        }

        .quick-link-card h3 {
			font-size: 1.25rem;
			margin-bottom: 0.5rem;
			color: var(--primary);
        }

        section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            color: #003366;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-bottom: 4rem;
        }

        .benefit-card {
            background: white;
            font-weight: bold;
			padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .benefit-card-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .benefit-card-link:hover .benefit-card {    /* Add hover effects for the entire card */
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-5px);
            transition: all 0.3s ease;
        }

        .benefit-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #00a8cc;
        }

        .benefit-card h3 {
            font-size: 1.5rem;
            font-weight: 800;
			margin-bottom: 1rem;
            color: #003366;
        }

        .stats {
            background-color: #003366;
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #00a8cc;
        }

        .stat-label {
            font-size: 1.125rem;
            font-weight: 500;
            margin-top: 0.5rem;
        }

        .expertise {
            background-color: white;
        }

        .expertise-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            font-size: 1.25rem;
            line-height: 1.8;
        }

        .highlight {
            background-color: #e6f7ff;
            padding: 0.25rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
            color: #003366;
        }

        .lead-form-section {
            background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
        }

        .form-container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 51, 102, 0.1);
        }

        .form-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #003366;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.875rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #00a8cc;
        }

        .form-submit {
            width: 100%;
            padding: 1rem;
            background-color: #003366;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.125rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .form-submit:hover {
            background-color: #004080;
        }

        aside {
			width: 40%;
			padding-left: 15px;
			padding-top: 10px;
			padding-right: 15px;
			padding-bottom: 10px;
			margin-top: 10px;
			margin-left: 15px;
			margin-right: 15px;
			margin-bottom: 10px;
			float: right;
			font-style: italic;
			background-color: #FFFFC0;
        }

        /* Navigation Styles - Add to newStyle.css */

        .main-nav {
			background: #002244;
			padding: 0.8rem;
			text-align: center;
			border-top: 2px solid #FFD700;
        }

        .main-nav a {
			color: white;
			text-decoration: none;
			margin: 0 1rem;
			font-size: 0.9rem;
			font-weight: 500;
			transition: color 0.2s ease;
        }

        .main-nav a:hover {
			color: #FFD700;
        }

        footer {
            background-color: #003366;
            color: white;
            text-align: center;
            padding: 2rem 0;
            font-size: 0.95rem;
        }

        .discreet-note {
            font-size: 1rem;
            font-style: italic;
            color: #666;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #eee;
            text-align: center;
        }

        @media (max-width: 768px) {

           .tagline {
                font-size: 0.75rem !important;
                font-weight: 400;
                opacity: 0.9;
                max-width: 500px;
                margin: -1.5rem auto 1rem !important;
            }
			
			h1 {
                font-size: 2.25rem;
            }
			
            .lead-text {
                font-size: 1.25rem;
            }
			
            section {
                padding: 3rem 0;
            }
			
            .section-title {
                font-size: 2rem;
            }
			
            .form-container {
                padding: 2rem;
            }
        }

        /* Optional: For very small screens, reduce spacing */

        @media (max-width: 480px) {
			.main-nav a {
				margin: 0 0.5rem;
				display: inline-block;
				padding: 0.2rem 0;
            }
        }
