[file name]: styles.css
[file content begin]
:root {
    --primary-blue: #0a66c2;
    --deep-blue: #004182;
    --light-blue: #e8f4ff;
    --text-dark: #111827;
    --text-medium: #374151;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-sm: 4px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--bg-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: min(1200px, 95%);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.95);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
}

/* Update the .nav-logo-mark class in your styles.css */
.nav-logo-mark {
    background: var(--primary-blue);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.nav-logo-text span:first-child {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-logo-text span:last-child {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    padding: 4px 0;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a.active {
    color: var(--primary-blue);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-blue);
}

.nav-cta {
    background: var(--primary-blue);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    transition: all 0.2s;
    border: 1px solid var(--primary-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-cta:hover {
    background: var(--deep-blue);
    border-color: var(--deep-blue);
    transform: translateY(-1px);
}

/* Hero Section */
.page-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e8f4ff 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, var(--light-blue) 100%);
    opacity: 0.5;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
    max-width: 800px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 600px;
    margin-bottom: 32px;
}

/* Content Cards */
.content-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 48px;
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--light-blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-blue);
    font-size: 24px;
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Contact Section */
.contact-info {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 40px;
    margin-top: 40px;
    border: 1px solid var(--border-color);
}

.contact-info p {
    font-size: 1.125rem;
    margin-bottom: 16px;
    color: var(--text-medium);
}

.contact-info strong {
    color: var(--text-dark);
}

/* Footer */
footer {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    margin-top: auto;
}

/* For footer logo */
.footer-logo .nav-logo-mark {
    width: 50px;
    height: 50px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

footer span {
    color: var(--text-light);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        height: auto;
        padding: 1rem 0;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .nav-cta {
        margin-top: 8px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-hero {
        padding: 60px 0 40px;
    }

    .footer-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.125rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}
[file content end]