/* SEO Content Sections */
.seo-content-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.seo-content-section:nth-child(odd) {
    background-color: #ffffff;
}

.seo-section-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

/* Why HVAC Section */
.benefit-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.benefit-card .icon {
    font-size: 3rem;
    color: #3172ae;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Job Types Accordion Section */
.job-types-accordion .accordion-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    overflow: hidden;
}

.job-types-accordion .accordion-header {
    margin-bottom: 0;
}

.job-types-accordion .accordion-button {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    background-color: #f8f9fa;
    padding: 1.25rem 1.5rem;
    text-align: left;
    width: 100%;
    border: none;
}

.job-types-accordion .accordion-button:not(.collapsed) {
    background-color: #3172ae;
    color: white;
}

.job-types-accordion .accordion-button:focus {
    box-shadow: none;
}

.job-types-accordion .accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.accordion-body .btn-secondary {
    font-weight: 600;
    background-color: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

.accordion-body .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
    color: #fff;
}

.accordion-body-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* Top States Section */
.top-states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.state-link-card {
    display: block;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.state-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    color: #3172ae;
}
