.why-choose-us {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    padding: 80px 20px;
    min-height: 100vh;
    text-align: center;
    box-sizing: border-box;
    z-index: 10;

    /* Background image */
    background: url("/img/why.png") no-repeat center center;
    background-size: cover;
    color: white; /* makes text visible */
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 0.5 = 50% dark overlay */
    z-index: -1; /* sits behind content */
}

.choose-container {
    max-width: 1200px;
    margin: 0 auto;
}
.choose-container h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fffefe;
    display: inline-block;
    font-weight: bold;
    border-bottom: 3px solid rgb(243, 241, 241); /* thickness and color of underline */
    padding-bottom: 5px; /* space between text and line */
}

.why-choose-us p {
    font-size: 4.6rem;
    color: #fffefe;
    line-height: 1.6;
}
.choose-intro {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #fffefe;
}

.choose-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.choose-card {
    background: #111010;
    padding: 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}

.choose-card:hover {
    transform: translateY(-8px);
}
.choose-card h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #efeeea;
    border-bottom: 1px solid #ffffff; /* white underline */
    display: inline-block; /* ensures underline matches text width */
    padding-bottom: 2px; /* space between text and line */
}
.choose-card p {
    font-size: 1.7rem;
    line-height: 1.5;
    color: #eee;
}
/* Responsive tweaks */
@media (max-width: 900px) {
    .choose-cards {
        flex-direction: column;
        gap: 20px;
    }
}
