/* Hero Section */
.hero-section {
    background-color: #7a7a7a;
    color: #fff;
    padding: 80px 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    color: #fff;
}

/* Section Padding */
.section-padding {
    padding: 60px 0;
}

.bg-light {
    background-color: #f5f5f5;
}

/* Section Title */
.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}

/* Emergency Items */
.emergency-item {
    margin-bottom: 40px;
    padding: 20px;
}

.emergency-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.emergency-item h3 {
    font-size: 20px;
    color: #333;
    margin-top: 20px;
}

/* Case Studies */
.case-study {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
    min-height: 350px;
}

.case-study h3 {
    color: #da4534;
    font-size: 24px;
    margin-bottom: 15px;
}

.case-study p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.case-study p strong {
    color: #da4534;
}

.company-name {
    font-weight: bold;
    color: #666;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Flow Steps */
.flow-step {
    margin-bottom: 30px;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #da4534;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
}

.flow-step h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.flow-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* FAQ */
.faq-item {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #da4534;
}

.faq-item h3 {
    font-size: 20px;
    color: #333;
    margin: 0 0 10px 0;
}

.faq-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Buttons */
.btn-primary {
    background-color: #da4534;
    border-color: #da4534;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #c03d2e;
    border-color: #c03d2e;
}

.btn-lg {
    padding: 15px 30px;
    font-size: 18px;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    margin-top: 60px;
}

.footer p {
    margin: 5px 0;
}

.footer-link {
    color: #fff;
    text-decoration: underline;
}

.footer-link:hover,
.footer-link:focus {
    color: #da4534;
    text-decoration: none;
}

/* Parent Section */
.parent-section {
    padding-bottom: 40px;
}

/* Subsection */
.subsection {
    margin-top: 40px;
    padding: 30px 20px;
    background-color: #fff;
    border-left: 4px solid #da4534;
    border-radius: 5px;
}

.subsection-alt {
    background-color: #fafafa;
    border-left-color: #c03d2e;
}

.subsection-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #da4534;
    padding-left: 20px;
    position: relative;
    text-align: left;
}

.subsection-title::before {
    content: '■';
    position: absolute;
    left: 0;
    color: #da4534;
    font-size: 20px;
}

.subsection-alt .subsection-title {
    color: #c03d2e;
}

.subsection-alt .subsection-title::before {
    color: #c03d2e;
}

.subsection .lead {
    margin-bottom: 15px;
    text-align: left;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 400;
    color: #555;
    line-height: 1.8;
}

/* Vehicle Section */
.vehicle-image {
    margin-bottom: 30px;
}

.vehicle-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.vehicle-subtitle {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.vehicle-list {
    text-align: left;
}

.vehicle-list p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .emergency-item h3 {
        font-size: 18px;
    }
    
    .vehicle-subtitle {
        font-size: 20px;
        margin-top: 20px;
    }
    
    .vehicle-list {
        text-align: center;
    }
    
    .subsection .lead {
        text-align: left;
        font-size: 16px;
    }
    
    .subsection-title {
        text-align: left;
        font-size: 24px;
    }
}
