/* Explain: Precise color matching based on the reference design */
:root {
    --primary-color: #062F63; /* Deep navy blue used in contact and why-us */
    --primary-hover: #041f42;
    --secondary-color: #0062D1; /* Bright blue used for CTA buttons and highlights */
    --secondary-hover: #0050aa;
    --background-color: #FFFFFF;
    --surface-color: #FFFFFF;
    --surface-soft: #F8F9FA; /* Light gray for reviews bg */
    --text-color: #333333;
    --text-muted: #666666;
    --border-color: #E5E7EB;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-xl: 16px;
    --radius-lg: 8px;
    --shadow-card: 0 10px 30px -10px rgba(6, 47, 99, 0.1);
}