/* Base Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #F8FAFC;
    color: #1F2937;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1 {
    color: #1F2937;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    color: #2563EB;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
}

h3 {
    color: #1F2937;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

p {
    color: #4B5563;
    font-size: 16px;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Section Padding */
section {
    padding: 80px 0;
}

/* Hero Section */
.manufacturing-hero {
    background-color: #FFFFFF;
    padding: 100px 0;
}

.manufacturing-hero h1 {
    max-width: 600px;
}

.hero-subtext {
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 30px;
    color: #4B5563;
}

/* Challenges Section */
.challenges-section {
    background-color: #F8FAFC;
}

.challenge-list {
    margin-top: 40px;
}

.challenge-item {
    display: flex;
    margin-bottom: 30px;
}

.challenge-icon {
    width: 50px;
    height: 50px;
    background-color: #EFF6FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #2563EB;
    font-size: 20px;
    flex-shrink: 0;
}

.challenge-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.challenge-content p {
    color: #4B5563;
    margin-bottom: 0;
}

/* Capabilities Section */
.capabilities-section {
    background-color: #FFFFFF;
}

.section-subtitle {
    color: #4B5563;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.capability-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E5E7EB;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #2563EB;
}

.capability-icon {
    width: 60px;
    height: 60px;
    background-color: #EFF6FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #2563EB;
    font-size: 24px;
}

/* Performance Section */
.performance-section {
    background-color: #2563EB;
    color: #FFFFFF;
}

.performance-section h2,
.performance-section .section-subtitle {
    color: #FFFFFF;
}

.performance-section .section-subtitle {
    opacity: 0.9;
}

.performance-item {
    padding: 30px 15px;
}

.performance-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #F59E0B;
}

.performance-value {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.performance-label {
    font-size: 18px;
    opacity: 0.9;
}

/* CTA Section */
.manufacturing-cta {
    background-color: #F8FAFC;
}

.cta-content {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #1F2937;
    margin-bottom: 20px;
}

.cta-content p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-cta {
    background-color: #F59E0B;
    color: #FFFFFF;
    border: none;
}

.btn-cta:hover {
    background-color: #D97706;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .manufacturing-hero {
        padding: 80px 0;
        text-align: center;
    }
    
    .manufacturing-hero h1,
    .manufacturing-hero .hero-subtext {
        margin-left: auto;
        margin-right: auto;
    }
    
    .challenge-item {
        flex-direction: column;
    }
    
    .challenge-icon {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .cta-content {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 26px;
    }
    
    .performance-value {
        font-size: 36px;
    }
}