/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #4b5563;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

/* Navigation Styles */
.nav {
    background-color: #ffffff;
    border-bottom: 1px solid #f3f4f6;
    position: sticky;
    top: 0;
    z-index: 50;
}

.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.nav-logo-section {
    display: flex;
    align-items: center;
}

.logo-link {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-container {
    width: 2.5rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 2.5rem;
    height: 3.25rem;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: #111827;
}

/* Desktop Menu */
.desktop-menu {
    display: none;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 700;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link.active {
    color: #2563eb;
    font-weight: 700;
}

.nav-button {
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s;
}

.nav-button:hover {
    background-color: #1d4ed8;
}

/* Mobile Menu Button */

.mobile-toggle-wrapper {
    display: flex;
    align-items: center;
}

.menu-toggle {
    color: #6b7280;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    transition: color 0.2s;
}

.menu-toggle:hover {
    color: #4b5563;
}

.menu-toggle:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;  /* overlay properly below nav */
    top: 4rem;           /* height of nav */
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #f3f4f6;
    z-index: 40;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
}

/* Mobile CTA button */
.mobile-menu-button-wrapper a.mobile-menu-button {
    display: block;
    width: 100%;
    background-color: #2563eb;
    color: #ffffff;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
}

/* Mobile Menu Button Alignment */

.mobile-menu-link {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 700;
    color: #4b5563;
    text-decoration: none;
    margin-bottom: 0.25rem;
}

.mobile-menu-link:hover {
    color: #2563eb;
    background-color: #f9fafb;
}

.mobile-menu-link.active {
    color: #2563eb;
    background-color: #eff6ff;
}

.mobile-menu-button-wrapper {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}

.mobile-menu-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 700;
    /* background-color: #2563eb; */
    color: #ffffff;
    text-decoration: none;
}

/* .mobile-menu-button:hover {
    background-color: #1d4ed8;
} */

/* Page Header */
.page-header {
    background: linear-gradient(to bottom right, #dbeafe, #bfdbfe);
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.page-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
}

.page-subtitle {
    margin-top: 1rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
    color: #6b7280;
}

/* About Section */
.about-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.about-content {
    margin-top: 2.5rem;
}

.section-label {
    font-size: 0.875rem;
    color: #2563eb;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
}

.text-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.125rem;
    color: #6b7280;
}

/* Values Section */
.values-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading {
    margin-top: 0.5rem;
    font-size: 1.875rem;
    line-height: 2rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #111827;
}

.section-description {
    margin-top: 1rem;
    max-width: 42rem;
    font-size: 1.25rem;
    color: #6b7280;
    margin-left: auto;
    margin-right: auto;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.value-card {
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-0.75rem);
}

.value-icon {
    width: 3rem;
    height: 3rem;
    background-color: #dbeafe;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.value-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.value-text {
    color: #6b7280;
}

/* Process Section */
.process-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #ffffff;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.step-content {
    order: 2;
}

.step-image {
    order: 1;
    margin-bottom: 2.5rem;
}

.step-image .image {
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background-color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-right: 1rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.step-body {
    margin-left: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 1.125rem;
    color: #6b7280;
}

.step-checklist {
    padding-top: 1rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #2563eb;
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

.checklist-text {
    color: #4b5563;
}

/* CTA Section */
.cta-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #1e3a8a;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta-button {
    background-color: #ffffff;
    color: #2563eb;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.cta-button:hover {
    background-color: #f3f4f6;
}

/* Footer */
.footer {
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    grid-column: span 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #6b7280;
    font-size: 0.875rem;
}

.footer-column {
    margin-bottom: 1rem;
}

.footer-heading {
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: #4b5563;
    text-decoration: none;
}

.footer-links a:hover {
    color: #2563eb;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4b5563;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cf_email {
  color: #003175;
    text-decoration: none;
}

.contact-icon {
    width: 1rem;
    height: 1rem;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.875rem;
    color: #6b7280;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #9ca3af;
    text-decoration: none;
}

.social-links a:hover {
    color: #2563eb;
}

.social-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Tablet Styles */
@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .mobile-menu-content {
        padding-left: 0.75rem;
    }

    .page-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-heading {
        font-size: 2.25rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-title {
        font-size: 2.25rem;
    }
}

/* Desktop Styles */
@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }

    .mobile-toggle-wrapper {
        display: none;
    }

    .mobile-menu-button {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        margin-top: 0;
    }

    .process-step {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-content.order-2 {
        order: 1;
    }

    .step-image.order-1 {
        order: 2;
        margin-bottom: 0;
    }

    .step-image {
        margin-bottom: 0;
    }

    .footer-bottom {
        flex-direction: row;
    }

    .social-links {
        margin-top: 0;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .page-title {
        font-size: 3.75rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .section-heading {
        font-size: 2.25rem;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .cta-title {
        font-size: 2.25rem;
    }
}