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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #1a2332;
}

a {
    color: #e67e22;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header {
    background: #0f1621;
    border-bottom: 1px solid #2a3a52;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

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

.logo {
    height: 56px;
    width: auto;
}

nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #b0b8c1;
}

nav a:hover {
    color: #e67e22;
}

nav a.active {
    color: #e67e22;
    font-weight: 600;
}

.nav-toggle-checkbox {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 22px;
    cursor: pointer;
}

.nav-toggle-label span {
    display: block;
    width: 100%;
    height: 2px;
    background: #b0b8c1;
    transition: background 0.2s ease;
}

.nav-toggle-label:hover span {
    background: #e67e22;
}

@media (max-width: 768px) {
    .nav-toggle-label {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #0f1621;
        border-bottom: 1px solid #2a3a52;
    }

    nav a {
        padding: 1rem 2rem;
        border-top: 1px solid #2a3a52;
    }

    .nav-toggle-checkbox:checked ~ nav {
        display: flex;
    }
}

.hero {
    padding: 5rem 0;
    text-align: center;
}

.hero-location {
    font-size: 0.85rem;
    color: #e67e22;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-family: Georgia, 'Times New Roman', serif;
    color: #ffffff;
}

.hero h1 em {
    font-style: italic;
    color: #e67e22;
    font-weight: 400;
    display: block;
    font-size: 2.8rem;
}

.hero .tagline {
    font-size: 1.1rem;
    color: #b0b8c1;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.page-hero {
    padding: 3.5rem 0 2rem;
    text-align: center;
    border-bottom: 1px solid #2a3a52;
}

.page-hero h1 {
    font-size: 2.75rem;
    font-weight: 400;
    font-family: Georgia, 'Times New Roman', serif;
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-hero .tagline {
    font-size: 1.05rem;
    color: #b0b8c1;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #e67e22;
    color: white;
}

.btn-primary:hover {
    background: #d96b1a;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: #b0b8c1;
    border: 2px solid #b0b8c1;
}

.btn-secondary:hover {
    color: #e67e22;
    border-color: #e67e22;
    text-decoration: none;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: transparent;
    border-radius: 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e67e22;
    font-family: Georgia, 'Times New Roman', serif;
}

.stat-label {
    font-size: 0.85rem;
    color: #8593a3;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section {
    padding: 4rem 0;
    border-bottom: 1px solid #2a3a52;
}

.section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #ffffff;
}

.section-intro {
    text-align: center;
    color: #a0a8b1;
    max-width: 760px;
    margin: -2rem auto 3rem;
    line-height: 1.8;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #e67e22;
}

.category-heading {
    font-size: 1.5rem;
    text-align: center;
    color: #e67e22;
    margin: 3rem 0 1rem;
}

.category-blurb {
    text-align: center;
    color: #a0a8b1;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.mission {
    background: transparent;
    padding: 2rem;
    border-radius: 0;
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #b0b8c1;
}

.mission strong {
    color: #e67e22;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-category {
    background: #253449;
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid #e67e22;
}

.service-category h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    border-bottom: 2px solid #e67e22;
    padding-bottom: 0.5rem;
}

.service-category p {
    font-size: 0.95rem;
    color: #a0a8b1;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #b0b8c1;
}

.service-list li:before {
    content: "→ ";
    color: #e67e22;
    font-weight: bold;
    margin-right: 0.5rem;
}

.pricing-example {
    background: #2a3a52;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1rem 0;
    border-left: 3px solid #e67e22;
}

.pricing-example strong {
    color: #e67e22;
    display: block;
    margin-bottom: 0.5rem;
}

.pricing-example .price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e67e22;
    margin: 0.5rem 0;
}

.pricing-example .description {
    font-size: 0.9rem;
    color: #a0a8b1;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.overview-card {
    background: #253449;
    padding: 2rem;
    border-radius: 4px;
    border-top: 3px solid #e67e22;
    display: flex;
    flex-direction: column;
}

.overview-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.overview-card p {
    color: #a0a8b1;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.overview-card a {
    font-size: 0.9rem;
    font-weight: 600;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.process-step {
    background: #253449;
    padding: 2rem;
    border-radius: 4px;
}

.process-number {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #e67e22;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.process-step h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: #a0a8b1;
    font-size: 0.95rem;
}

.clients-note {
    text-align: center;
    color: #a0a8b1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.clients-note strong {
    color: #b0b8c1;
}

.cta-banner {
    background: #253449;
    border-left: 4px solid #e67e22;
    border-radius: 4px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0 1rem;
}

.cta-banner h2 {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: #a0a8b1;
    max-width: 620px;
    margin: 0 auto 1.75rem;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-card {
    background: #253449;
    padding: 2rem;
    border-radius: 4px;
}

.about-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #e67e22;
}

.about-card p {
    font-size: 0.95rem;
    color: #a0a8b1;
}

.leadership {
    background: #253449;
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.leadership h3 {
    color: #ffffff;
    margin-top: 1rem;
}

.leadership p {
    color: #a0a8b1;
}

.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.credential {
    background: #1a2332;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #2a3a52;
    color: #b0b8c1;
}

.company-info {
    margin: 2rem 0;
}

.company-info h3 {
    color: #ffffff;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.info-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #2a3a52;
    color: #a0a8b1;
}

.info-table td:first-child {
    font-weight: 600;
    width: 150px;
    color: #e67e22;
}

.faq {
    margin: 2rem 0;
}

.faq-item {
    background: #253449;
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    border-left: 3px solid #e67e22;
}

.faq-item h4 {
    color: #e67e22;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.faq-item p {
    color: #a0a8b1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #b0b8c1;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #2a3a52;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    background: #253449;
    color: #e0e0e0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8593a3;
}

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

.hidden-field {
    display: none;
}

.phone-callout {
    margin-top: 3rem;
    padding: 2rem;
    background: #253449;
    border-radius: 4px;
    text-align: center;
}

.phone-callout p {
    color: #a0a8b1;
    margin-bottom: 1rem;
}

footer {
    background: #0f1621;
    color: #b0b8c1;
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
    border-top: 1px solid #2a3a52;
}

footer a {
    color: #e67e22;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero h1 em {
        font-size: 1.8rem;
    }

    .hero .tagline {
        font-size: 1rem;
    }

    .page-hero h1 {
        font-size: 1.9rem;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }
}
