<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.why-choose-section {
    text-align: center;
    background-color: rgb(77, 77, 77);
    padding: 40px;
    padding-bottom: 100px;
    color: #ffffff;
}

/* Title Styling */
.why-choose-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.why-choose-section p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.8;
}

.subtitle {
    margin-bottom: 80px !important;
}

/* Service Box Container */
.service-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Individual Service Box */
.service-box {
    background: #ffffff;
    color: #2C3E50;
    padding: 20px;
    width: 220px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    height: 220px;
}

/* Icon Styling */
.service-box .service-icon {
    width: 70px;
    height: 70px;
    background: rgb(255, 205, 7);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    margin-top: -50px;
}

.service-box .service-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Service Title */
.service-box h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Service Description */
.service-box p {
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .service-box {
        min-height: auto;
        /* Allows content to define height */
        padding: 15px;
        margin-bottom: 20px;
    }
}
</pre></body></html>