.hero-service {
    position: relative;
    padding: 120px 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-service .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-service .hero-content {
    position: relative;
    text-align: center;
}

.hero-service h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #e42013;
}

.hero-service p {
    font-size: 20px;
    line-height: 1.6;
}

.service-info {
    padding: 40px 0 0;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-box {
    background: #f7f7f7;
    padding: 30px;
    border-radius: 14px;
    transition: 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    background: #e9e9e9;
}

.service-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 16px;
    line-height: 1.7;
}
.service-details {
    background: #ffffff;
}

.service-details h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.details-list li {
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #e1e1e1;
    margin-left: 10px;
}



.locations-list {
    margin: 25px 0 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.locations-list span {
    background: #f4f4f4;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 15px;
    border: 1px solid #ddd;
}



.cta-section {
    padding: 80px 0;
    background: #1c1c1c;
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: #de201d;
    color: #fff;
    font-size: 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-button:hover {
    background: #a01817;
}



/* RESPONSIVE */

@media (max-width: 768px) {
    .hero-service h1 {
        font-size: 32px;
    }
    .hero-service p {
        font-size: 16px;
    }
}