/* Hero Section */
.why-hero {
    background: url('images/why-choose-us-hero.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
}

.why-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.why-hero h1,
.why-hero p {
    position: relative;
    z-index: 2;
}

.why-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.why-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: auto;
}

/* Why Section */
.why-section {
    background-color: #fff;
    padding: 60px 20px;
}

.why-item {
    margin-bottom: 40px;
}

.why-item h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #222;
}

.why-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}

.why-cta {
    margin-top: 40px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
    .why-hero h1 {
        font-size: 2rem;
    }

    .why-hero p {
        font-size: 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 14px;
    }
}
