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

:root {
    --forest-green: #1B4332;
    --sage: #2D6A4F;
    --light-sage: #52B788;
    --cream: #F8F7F4;
    --charcoal: #2B2B2B;
    --gold-accent: #D4AF37;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--charcoal);
    background: var(--cream);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 400;
    letter-spacing: -0.02em;
}

.sans {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

/* Header */
header {
    background: white;
    padding: 1.5rem 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3rem;
}

.logo {
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: 400;
    font-family: Georgia, serif;
    display: flex;
    align-items: center;
}

.logo-icon {
    height: 2.5rem;
    width: auto;
    margin-right: 0.5rem;
}

.logo .future {
    color: #1B4332;
    margin-right: 0.25em;
}

.logo .compatible {
    color: #2D6A4F;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin-left: auto;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.contact-btn {
    background: var(--forest-green);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 3px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: var(--sage);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(27,67,50,0.03) 0%, rgba(255,255,255,0) 50%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--forest-green);
    margin-bottom: 1.5rem;
}

.hero-text .subtitle {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.btn-primary {
    background: var(--forest-green);
    color: white;
    padding: 1rem 2rem;
    border-radius: 3px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--sage);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--forest-green);
    padding: 1rem 2rem;
    border: 2px solid var(--forest-green);
    border-radius: 3px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--sage);
    border-color: var(--sage);
    color: white;
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, white, var(--cream));
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 2rem;
}

.about-lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.about-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-credential {
    padding: 1.5rem;
    background: white;
    border-left: 3px solid var(--gold-accent);
    text-align: left;
}

.about-credential h4 {
    color: var(--forest-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* CTA Section */
.cta {
    padding: 5rem 2rem;
    background: var(--forest-green);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta .btn-primary {
    background: white;
    color: var(--forest-green);
}

.cta .btn-primary:hover {
    background: var(--cream);
}

/* Footer */
footer {
    padding: 3rem 2rem 2rem;
    background: white;
    color: var(--charcoal);
    border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-contact {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.footer-contact a {
    color: var(--forest-green);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--sage);
}

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

.footer-legal p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.mcm-note {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* Services Page Specific Styles */
.services-page {
    padding: 8rem 2rem 5rem;
    background: white;
    min-height: 70vh;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 3rem;
    font-weight: 400;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: var(--charcoal);
    opacity: 0.7;
    margin-top: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    padding: 2.5rem;
    background: var(--cream);
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(27,67,50,0.1);
}

.service-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.service-header h3 {
    font-size: 1.5rem;
    color: var(--forest-green);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.service-price {
    font-size: 1rem;
    color: var(--forest-green);
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

.service-card > p {
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-style: italic;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.6;
}

.service-features li:before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
}

.service-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.services-footnote {
    text-align: center;
    font-style: italic;
    opacity: 0.6;
    margin-top: 3rem;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

    .about-credentials {
        grid-template-columns: 1fr;
    }

    .service-ctas {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }
}
