﻿html {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

h1, h2, h3 {
    color: #1F2A78;
    font-family: "Inter", "Segoe UI", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

body{
    margin: 0;
}

.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.header-content {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.logo-container{
    max-width: 24rem;
}

.btn-primary {
    background-color: #7584FF;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

    .btn-primary:hover {
        background-color: #586BFF; /* darker */
    }

    .btn-primary:active {
        background-color: #4357FF; /* darkest */
    }

    .btn-primary:focus {
        outline: none;
        box-shadow: 0 0 0 4px rgba(117,132,255,0.35);
    }

    .btn-primary:disabled {
        background-color: #9AA6FF;
        cursor: not-allowed;
    }

.logo {
    width: 100%;
}

.main-content {
    flex: 1;
}

.section {
    padding: 4rem 1.5rem;
}

.section-alt {
    padding: 4rem 1.5rem;
    background-color: #F2F4FF;
}

.container-narrow {
    max-width: 56rem;
    margin: 0 auto;
}

.container-wide {
    max-width: 72rem;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.hero-text {
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto 1.5rem auto;
}

    .hero-text:last-child {
        margin-bottom: 0;
    }

.spacing-bottom {
    margin-bottom: 1rem;
}

.grid-two-col {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .grid-two-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

.image-container {
    border-radius: 0.5rem;
    overflow: hidden;
}

.image-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-content h2 {
    margin-bottom: 1rem;
}

.text-muted {
    color: #4b5563;
}

.text-paragraph {
    color: #4b5563;
    margin-bottom: 1rem;
}

    .text-paragraph:last-child {
        margin-bottom: 0;
    }

.footer {
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

.footer-text {
    color: #4b5563;
}
