﻿:root {
    /* Colors derived from TSX & requested theme structure */
    --primary: #003366; /* Main Deep Blue */
    --secondary: #00B4D8; /* Cyan/Blue for buttons/accents */
    --accent: #4DB8E8; /* Lighter Blue */
    --success: #84ee5e; /* Green for buttons/checks */
    --success-dark: #FFFFFF;
    --lime: #88D64C; /* Lime green for icons */
    --text-main: #334155; /* Slate 700 */
    --text-muted: #64748b; /* Slate 500 */
    --bg-light: #f8fafc; /* Slate 50 */
    --bg-white: #ffffff;
    --border: #e2e8f0; /* Slate 200 */
    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    /* Layout */
    --container-width: 1280px;
    --header-height: 4rem;
    /* Typography */
    --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: inline;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container--narrow {
    max-width: 1024px;
}

.container--wide {
    max-width: 1400px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.text-center {
    text-align: center;
}

.text-green {
    color: var(--success);
}

.text-cyan {
    color: var(--secondary);
}
.container{
    max-width:80em !important;
}
/* Buttons (Shared Styles + Specific Classes) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn--primary {
    width:100%;
    background-color: var(--success);
    color: #000000;
    border: 2px solid transparent;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

    .btn--primary:hover {
        background-color: var(--success-dark);
        opacity: 0.95;
        border-color: var(--success)
    }

.btn--outline {
    background-color: white;
    border: 2px solid var(--secondary);
}

    .btn--outline:hover {
        background-color: #ecfeff; /* Light cyan bg */
    }

.btn--lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

.btn--full {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

/* Tailwind Compatibility Classes for Header Buttons */
.btn-default {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-ghost {
    background: transparent;
    padding: 0.5rem;
}
/* Footer */
.footer {
    background-color: #003366;
    color: white;
    padding: 4rem 0 0;
}

.footer__grid {
    display: grid;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.footer__logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

    .footer__logo span {
        color: #93c5fd;
    }
/* light blue */

.footer__contact p, .footer__contact a {
    display: block;
    color: #bfdbfe; /* blue-200 */
    font-size: 0.875rem;
    margin: 16px 0;
}

    .footer__contact a:hover {
        color: white;
    }

.footer h4 {
    color: #38bdf8; /* sky-400 */
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

    .footer ul li a {
        color: #bfdbfe;
        font-size: 0.875rem;
    }

        .footer ul li a:hover {
            color: white;
        }

.footer__bottom {
    border-top: 1px solid #1e3a8a; /* blue-900 */
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.75rem;
    color: #93c5fd;
    text-align: center;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}
