/* style/index-why-choose-mcw.css */

.page-index-why-choose-mcw {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Default text color for dark sections */
    background-color: #0A192F; /* Default background */
}

.page-index-why-choose-mcw__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Color Utility Classes */
.page-index-why-choose-mcw__bg--dark {
    background-color: #0A192F;
    color: #f0f0f0; /* Light text on dark background */
}

.page-index-why-choose-mcw__bg--light {
    background-color: #f0f0f0;
    color: #0A192F; /* Dark text on light background */
}

.page-index-why-choose-mcw__highlight {
    color: #FFD700;
    font-weight: bold;
}

/* Headings */
.page-index-why-choose-mcw__hero-title {
    font-size: 3.2em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-index-why-choose-mcw__hero-subtitle {
    font-size: 1.3em;
    color: #cccccc;
    text-align: center;
    margin-bottom: 40px;
}

.page-index-why-choose-mcw__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-index-why-choose-mcw__feature-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: bold;
    text-align: center;
}

/* Text */
.page-index-why-choose-mcw__text {
    font-size: 1.1em;
    margin-bottom: 15px;
    text-align: justify;
}

/* Buttons */
.page-index-why-choose-mcw__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-index-why-choose-mcw__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
}

.page-index-why-choose-mcw__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-index-why-choose-mcw__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-index-why-choose-mcw__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

.page-index-why-choose-mcw__btn--lg {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Hero Section */
.page-index-why-choose-mcw__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%);
    padding: 100px 0;
    text-align: center;
}

.page-index-why-choose-mcw__hero-section .page-index-why-choose-mcw__btn {
    margin: 0 10px;
}

/* Content Section */
.page-index-why-choose-mcw__content-section {
    padding: 60px 0;
}

/* Feature Section */
.page-index-why-choose-mcw__feature-section {
    padding: 80px 0;
}

.page-index-why-choose-mcw__feature-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-index-why-choose-mcw__feature-item > div {
    flex: 1;
    min-width: 300px;
}

.page-index-why-choose-mcw__feature-image-wrapper {
    text-align: center;
}

.page-index-why-choose-mcw__feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-index-why-choose-mcw__feature-section--reversed .page-index-why-choose-mcw__feature-item {
    flex-direction: row-reverse;
}

/* Lists */
.page-index-why-choose-mcw__list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.page-index-why-choose-mcw__list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05em;
}

.page-index-why-choose-mcw__list li::before {
    content: '✔';
    color: #FFD700;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-index-why-choose-mcw__list-item-title {
    color: #FFD700;
}

/* CTA Section */
.page-index-why-choose-mcw__cta-section {
    padding: 80px 0;
    text-align: center;
}

.page-index-why-choose-mcw__cta-section .page-index-why-choose-mcw__btn {
    margin: 15px 15px;
}

/* Final Words Section */
.page-index-why-choose-mcw__final-words-section {
    padding: 60px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-why-choose-mcw__hero-title {
        font-size: 2.5em;
    }

    .page-index-why-choose-mcw__section-title {
        font-size: 2em;
    }

    .page-index-why-choose-mcw__feature-title {
        font-size: 1.7em;
    }

    .page-index-why-choose-mcw__feature-item {
        flex-direction: column;
        text-align: center;
    }

    .page-index-why-choose-mcw__feature-section--reversed .page-index-why-choose-mcw__feature-item {
        flex-direction: column;
    }

    .page-index-why-choose-mcw__btn--lg {
        padding: 15px 25px;
        font-size: 1em;
    }
    .page-index-why-choose-mcw__hero-section .page-index-why-choose-mcw__btn {
        display: block;
        margin: 15px auto;
    }
    .page-index-why-choose-mcw__cta-section .page-index-why-choose-mcw__btn {
        display: block;
        margin: 15px auto;
    }
}

@media (max-width: 480px) {
    .page-index-why-choose-mcw__hero-title {
        font-size: 2em;
    }

    .page-index-why-choose-mcw__hero-subtitle {
        font-size: 1.1em;
    }

    .page-index-why-choose-mcw__section-title {
        font-size: 1.8em;
    }

    .page-index-why-choose-mcw__feature-title {
        font-size: 1.5em;
    }

    .page-index-why-choose-mcw__text,
    .page-index-why-choose-mcw__list li {
        font-size: 1em;
    }
    .page-index-why-choose-mcw__hero-section,
    .page-index-why-choose-mcw__content-section,
    .page-index-why-choose-mcw__feature-section,
    .page-index-why-choose-mcw__cta-section,
    .page-index-why-choose-mcw__final-words-section {
        padding: 40px 0;
    }
}