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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Courier New', 'Courier', monospace;
    line-height: 1.6;
    color: #222;
    background-color: #fff;
}

/* Header Navigation */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #222;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 100;
}
.brand-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #222;
}
.header-cta {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    border: none;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Courier New', 'Courier', monospace;
    cursor: pointer;
    box-shadow: 0 2px 0 rgba(255,255,255,0);
    transition: box-shadow 0.2s ease;
}
.header-cta:hover {
    box-shadow: 0 2px 0 rgba(255,255,255,1);
}
.highlight {
    background-color: #c3e7ff;
    padding: 0.1rem 0.3rem;
    border-radius: 2px;
}
/* Container */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Typography */
h1, h2, h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    margin-top: 0;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1rem;
    color: #444;
}

a {
    color: #0066cc;
    text-decoration: none;
    border-bottom: 1px solid #0066cc;
    transition: color 0.2s ease, border-color 0.2s ease;
}

a:hover {
    color: #0052a3;
    border-bottom: 1px solid #0052a3;
}

a.header-cta,
a.cta-button {
    border-bottom: none;
}

/* Hero Section */
.hero {
    margin-bottom: 2rem;
    padding-bottom: 0;
    border-bottom: none;
}
.hero h1 {
    display: none;
}
.tagline {
    font-size: 0.95rem;
    font-weight: normal;
    margin-bottom: 1rem;
    color: #222;
    padding-left: 1rem;
    border-left: 3px solid #222;
}
.subtitle {
    font-size: 0.95rem;
    color: #222;
    margin-bottom: 1.5rem;
}

/* Approach Section */
.approach {
    margin-bottom: 2rem;
}
.approach-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}
.approach-item h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: bold;
    padding-left: 1rem;
    border-left: 3px solid #222;
}

/* Process Section */
.process {
    margin-bottom: 2rem;
}

.process-steps {
    list-style: decimal;
    margin-left: 2rem;
    margin-top: 1.5rem;
}

.step {
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}

.step h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f0f7ff;
    border-left: 4px solid #0066cc;
    border-radius: 4px;
}

.pricing h2 {
    margin-top: 0;
}

.pricing p {
    margin-bottom: 0.8rem;
}

/* FAQ Section */
.faq {
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #555;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 2rem;
    background-color: #f0f7ff;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.cta h2 {
    margin-top: 0;
}

.cta-button {
    display: inline-block;
    margin: 1rem 0;
    padding: 0.8rem 1.5rem;
    background-color: #0066cc;
    color: #fff;
    font-weight: 500;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 2px 0 rgba(255,255,255,0);
    transition: box-shadow 0.2s ease;
}

.cta-button:hover {
    box-shadow: 0 2px 0 rgba(255,255,255,1);
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #222;
    font-size: 0.9rem;
    color: #888;
}

.footer-email {
    color: #0066cc;
    text-decoration: none;
    border-bottom: none;
    transition: border-bottom 0.2s ease;
}

.footer-email:hover {
    border-bottom: 1px solid #0066cc;
}

.footer-copyright {
    margin: 0;
    text-align: right;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .tagline {
        font-size: 1.1rem;
    }

