/* =========================================================
   Hayden Software Solutions: brand system
   Colors sampled directly from the logo assets
   (android-chrome-192x192.png / favicon-32x32.png / images/logo.png):
     blue  ~ rgb(37,138,203)  -> #2589cb
     gray  ~ rgb(110,114,116) -> #6e7274
   Everything below is derived from those two values plus white.
   No purple/violet/pink/cyan gradients anywhere in this file.
   ========================================================= */

/* =========================================================
   Self-hosted webfonts (Inter, Space Grotesk)
   Fetched from Google Fonts (SIL Open Font License) and served
   locally so the site makes no third-party font requests.
   Both are variable fonts -- one file per family covers the
   whole weight range used on this site, rather than a separate
   file per weight.
   ========================================================= */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('../fonts/inter-variable.woff2') format('woff2');
}
@font-face {
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500 700;
    font-display: swap;
    src: url('../fonts/space-grotesk-variable.woff2') format('woff2');
}

:root {
    /* Brand blue, sampled from the logo mark */
    --blue: #2589cb;
    --blue-dark: #1c6a9c;   /* hover / pressed states */
    --blue-deep: #123a54;   /* dark sections (hero, contact, footer) */
    --blue-tint: #eaf4fb;   /* light wash for backgrounds/badges */

    /* Brand gray, sampled from the "HAYDEN / SOFTWARE SOLUTIONS" wordmark */
    --gray: #6e7274;
    --gray-dark: #33383b;   /* body copy / headings, darkened for contrast */
    --gray-light: #e2e5e7;  /* borders, dividers */
    --gray-wash: #f6f7f8;   /* off-white section backgrounds */

    --white: #ffffff;

    /* Not brand-derived by design: a conventional error red, distinct from
       brand blue/gray so validation states stay legible against either. */
    --error: #dc2626;

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-head: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 2px rgba(18, 58, 84, 0.06), 0 1px 3px rgba(18, 58, 84, 0.08);
    --shadow-md: 0 8px 24px rgba(18, 58, 84, 0.10);
    --shadow-lg: 0 20px 48px rgba(18, 58, 84, 0.16);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --max-width: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.65;
    color: var(--gray-dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    letter-spacing: -0.01em;
}

a {
    color: var(--blue);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* -------------------- Navigation -------------------- */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 1.1rem 5%;
    transition: all 0.25s ease;
    border-bottom: 1px solid transparent;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--gray-light);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

#navbar .logo,
#navbar .logo:link,
#navbar .logo:visited,
#navbar .logo:hover,
#navbar .logo:active {
    display: inline-flex;
    align-items: baseline;
    gap: 0.55rem;
    font-family: var(--font-head);
    color: inherit;
    text-decoration: none !important;
    cursor: pointer;
    border-bottom: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.logo-mark {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.02em;
}

.logo-word {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.25rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    cursor: pointer;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-links .nav-cta {
    background: var(--blue);
    color: var(--white);
    padding: 0.55rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-links .nav-cta:hover {
    background: var(--blue-dark);
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-dark);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* -------------------- Services dropdown -------------------- */

.nav-item-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-dropdown-caret {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.nav-item-dropdown:hover .nav-dropdown-caret,
.nav-item-dropdown:focus-within .nav-dropdown-caret {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    list-style: none;
    min-width: 250px;
    margin-top: 0.75rem;
    padding: 0.5rem;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

/* Invisible bridge so pointer hover survives the gap between the link and menu */
.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -0.75rem;
    left: 0;
    right: 0;
    height: 0.75rem;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-dark);
    white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background: var(--blue-tint);
    color: var(--blue);
}

/* -------------------- Hero -------------------- */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--white);
    padding: 8rem 5% 4rem;
}

.hero-images {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-images svg {
    position: absolute;
    top: 0;
    right: -10%;
    height: 100%;
    width: auto;
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blue);
    background: var(--blue-tint);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    display: inline-block;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 1.25rem;
    color: var(--gray-dark);
}

.hero-content h1 em {
    font-style: normal;
    color: var(--blue);
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2.25rem;
    color: var(--gray);
    max-width: 55ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.85rem;
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--blue);
    transition: all 0.25s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.6rem;
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid var(--gray-light);
    transition: all 0.25s ease;
    cursor: pointer;
    background: transparent;
}

.cta-secondary:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.hero-meta {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}

.hero-meta div {
    display: flex;
    flex-direction: column;
}

.hero-meta strong {
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: var(--gray-dark);
}

.hero-meta span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* -------------------- Services -------------------- */

.services {
    padding: 6rem 5%;
    background: var(--gray-wash);
}

.section-kicker {
    text-align: center;
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.section-title {
    text-align: center;
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--gray-dark);
}

.section-intro {
    max-width: 720px;
    margin: 0 auto 3.5rem;
    text-align: center;
    font-size: 1.08rem;
    color: var(--gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
}

.service-card {
    background: var(--white);
    padding: 2.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
    border: 1px solid var(--gray-light);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

a.service-card,
a.service-card:link,
a.service-card:visited {
    text-decoration: none;
    color: inherit;
    display: block;
}

a.service-card:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blue);
}

.service-card-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

a.service-card:hover .service-card-link svg {
    transform: translateX(3px);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--blue-tint);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-icon svg {
    width: 26px;
    height: 26px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--gray-dark);
}

.service-card p {
    color: var(--gray);
    line-height: 1.65;
    font-size: 0.98rem;
}

.services-secondary {
    margin-top: 4.5rem;
    padding-top: 3.5rem;
    border-top: 1px solid var(--gray-light);
}

.services-secondary-title {
    text-align: center;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.services-secondary-intro {
    max-width: 680px;
    margin: 0 auto 2.75rem;
    text-align: center;
    font-size: 1rem;
    color: var(--gray);
}

.services-grid--secondary {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.service-card--compact {
    padding: 1.75rem;
    background: var(--white);
    border-color: var(--gray-light);
    box-shadow: none;
}

.service-card--compact:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: var(--gray-light);
}

.service-card--compact .service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
}

.service-card--compact .service-icon svg {
    width: 22px;
    height: 22px;
}

.service-card--compact h3 {
    font-size: 1.08rem;
    margin-bottom: 0.6rem;
}

.service-card--compact p {
    font-size: 0.92rem;
    line-height: 1.6;
}

/* -------------------- About -------------------- */

.about {
    padding: 6rem 5%;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: start;
}

.about-text .section-kicker {
    text-align: left;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
    line-height: 1.2;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 1.25rem;
}

.about-text p strong {
    color: var(--gray-dark);
}

.about-signature {
    margin-top: 1.75rem;
    font-family: var(--font-head);
    font-size: 1.05rem;
    color: var(--gray-dark);
    font-weight: 600;
}

.about-signature span {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.15rem;
}

.founder-card {
    background: var(--gray-wash);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: sticky;
    top: 6rem;
}

.founder-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.founder-card h4 {
    font-size: 1.15rem;
    color: var(--gray-dark);
    margin-bottom: 0.15rem;
}

.founder-role {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.founder-quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--gray-dark);
    line-height: 1.55;
    border-left: 3px solid var(--blue);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.founder-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.founder-location svg {
    width: 16px;
    height: 16px;
    color: var(--blue);
    flex-shrink: 0;
}

/* -------------------- Contact -------------------- */

.contact {
    padding: 6rem 5%;
    background: linear-gradient(160deg, var(--blue-deep) 0%, #0c2536 100%);
    color: var(--white);
}

.contact .container {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.5rem;
    align-items: start;
}

.contact .container > * {
    min-width: 0;
}

.contact .section-title,
.contact .section-kicker {
    text-align: left;
}

.contact .section-title {
    color: var(--white);
}

.contact-intro p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 46ch;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
    min-width: 0;
}

.contact-detail svg {
    width: 20px;
    height: 20px;
    color: var(--blue);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.contact-detail > div {
    min-width: 0;
}

.contact-detail a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-detail span {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.15rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.06);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.required-mark {
    color: var(--error);
    margin-left: 0.3rem;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.95);
    color: var(--gray-dark);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(37, 137, 203, 0.35);
}

.form-group input.field-error,
.form-group textarea.field-error {
    box-shadow: 0 0 0 2px var(--error);
}

.form-group input.field-error:focus,
.form-group textarea.field-error:focus {
    box-shadow: 0 0 0 2px var(--error), 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.form-disclaimer a {
    color: var(--white);
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--blue);
    color: var(--white);
    border: 2px solid var(--blue);
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: var(--font-body);
}

.submit-button:hover {
    background: var(--white);
    color: var(--blue);
}

/* -------------------- Footer -------------------- */

.footer {
    background: var(--gray-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 2rem 5%;
    text-align: center;
    font-size: 0.9rem;
}

.footer a {
    color: var(--white);
    text-decoration: underline;
}

/* -------------------- Alert overlay -------------------- */

.alert-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 24, 28, 0.55);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.alert-overlay.active {
    opacity: 1;
    visibility: visible;
}

.alert-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 460px;
    width: 90%;
    text-align: center;
    transform: scale(0.85) translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-light);
    position: relative;
    overflow: hidden;
}

.alert-overlay.active .alert-box {
    transform: scale(1) translateY(0);
}

.alert-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--blue);
}

.alert-icon {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.alert-title {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: var(--gray-dark);
}

.alert-message {
    font-size: 1.02rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.alert-button {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    min-width: 100px;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font-body);
}

.alert-button:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 137, 203, 0.35);
}

/* -------------------- Motion -------------------- */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -------------------- Responsive -------------------- */

@media (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .founder-card {
        position: static;
    }

    .contact .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: min(78vw, 320px);
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 1.75rem;
        padding: 2rem 2.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-item-dropdown {
        width: 100%;
    }

    .nav-dropdown-caret {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        margin-top: 0.85rem;
        padding: 0 0 0 1rem;
        background: none;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-dropdown-menu a {
        padding: 0;
        color: var(--gray);
        white-space: normal;
    }

    .hero {
        padding-top: 7rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-meta {
        gap: 1.75rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

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