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

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

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

/* Header and Navigation */
header {
    background-color: #1e3a8a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    padding: 1rem 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #60a5fa;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    color: white;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.keyword-link {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #fbbf24;
    transition: all 0.3s ease;
}

.keyword-link:hover {
    color: #f59e0b;
    border-bottom-color: #f59e0b;
}

/* Section Styling */
section {
    padding: 4rem 0;
}

section:nth-child(even) {
    background-color: #f8fafc;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e40af;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e40af;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #374151;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

/* Process Steps */
.process-steps {
    margin-top: 2rem;
}

.process-step {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #1e40af;
}

.process-step h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

/* Benefits List */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.benefit-item h4 {
    color: #1e40af;
    margin-bottom: 0.75rem;
}

/* Industry Sections */
.industry-sections {
    margin-top: 2rem;
}

.industry-section {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.industry-section h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.testimonial blockquote {
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #374151;
}

.testimonial cite {
    font-weight: 600;
    color: #1e40af;
    font-style: normal;
}

.case-study {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.case-study h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.faq-item h3 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* Quote Section */
.quote-section {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    color: white;
}

.quote-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
}

.quote-section > .container > p {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-method h3 {
    color: white;
    margin-bottom: 1rem;
}

.contact-method p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #1f2937;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer p {
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

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

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

    h2 {
        font-size: 1.75rem;
    }

    section {
        padding: 3rem 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .benefit-card,
    .process-step,
    .testimonial,
    .case-study,
    .faq-item {
        padding: 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

/* Print Styles */
@media print {
    nav,
    footer {
        display: none;
    }

    .hero {
        background: none;
        color: black;
    }

    .keyword-link {
        color: #1e40af;
        text-decoration: underline;
    }
}