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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

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

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

h1 {
    font-size: 2.5rem;
    color: #3D3D3D;
}

h2 {
    font-size: 2rem;
    color: #3D3D3D;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.3rem;
    color: #3D3D3D;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #B8860B;
    color: #fff;
}

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

.btn-secondary {
    background: #fff;
    color: #3D3D3D;
    border: 2px solid #3D3D3D;
}

.btn-secondary:hover {
    background: #3D3D3D;
    color: #fff;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 80px 20px;
    text-align: center;
}

.hero .logo {
    max-width: 300px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #555;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Section */
.about {
    padding: 60px 20px;
    background: #fff;
}

.scope-box {
    background: #f9f9f9;
    border-left: 4px solid #B8860B;
    padding: 25px;
    margin-top: 30px;
}

.scope-box h3 {
    margin-bottom: 15px;
}

.scope-box ul {
    list-style: none;
}

.scope-box li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.scope-box li:before {
    content: "•";
    color: #B8860B;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Services Section */
.services {
    padding: 60px 20px;
    background: #f5f5f5;
}

.section-subtitle {
    text-align: left;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-card h3 {
    color: #3D3D3D;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #B8860B;
}

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

.service-card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    color: #555;
}

.service-card li:before {
    content: "→";
    color: #B8860B;
    position: absolute;
    left: 0;
}

/* How We Engage */
.engage {
    padding: 60px 20px;
    background: #fff;
}

.engage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.engage-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 6px;
    border-left: 4px solid #B8860B;
}

.engage-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.engage-model {
    background: #3D3D3D;
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.engage-model h3 {
    color: #B8860B;
}

/* Deliverables */
.deliverables {
    padding: 60px 20px;
    background: #f5f5f5;
    text-align: center;
}

.deliverables h2 {
    text-align: center;
}

.deliverables-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    display: inline-block;
}

.deliverables-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
}

.deliverables-list li:before {
    content: "✓";
    color: #B8860B;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* SAM Info */
.sam-info {
    padding: 60px 20px;
    background: #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
}

.info-card h2 {
    font-size: 1.5rem;
    color: #3D3D3D;
    margin-bottom: 20px;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.info-card li:before {
    content: "✓";
    color: #B8860B;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

/* Capability Statement */
.capability-statement {
    padding: 60px 20px;
    background: #3D3D3D;
    color: #fff;
    text-align: center;
}

.capability-statement h2 {
    color: #B8860B;
}

.capability-statement p {
    color: #ddd;
    margin-bottom: 25px;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background: #f5f5f5;
}

.contact h2 {
    text-align: center;
}

.contact > p {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 40px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #3D3D3D;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B8860B;
}

.hidden {
    display: none;
}

.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 20px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    max-width: 700px;
    margin: 30px auto 0;
}

/* Footer */
.footer {
    background: #3D3D3D;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    margin: 8px 0;
    font-size: 0.95rem;
}

.footer hr {
    border: none;
    border-top: 1px solid #555;
    margin: 20px auto;
    max-width: 600px;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero .logo {
        max-width: 250px;
    }

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

    .engage-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #B8860B;
    outline-offset: 2px;
}
