/* Maverick Why Choose Us Block */

.maverickwhychooseus {
    background: linear-gradient(to bottom, var(--tertiary), var(--primary));
    padding: 80px 0;
}

/* Header Styling */
.mwcu-header {
    text-align: center;
    margin-bottom: 60px;
}

.mwcu-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mwcu-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards Grid */
.mwcu-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

/* Individual Card Styling */
.mwcu-card {
    border-radius: 20px;
    background: linear-gradient(118deg, #31758E 18.35%, #31758E 75.14%);
    box-shadow: -6px 0 40px 5px rgba(0, 132, 180, 0.25);
    padding: 30px;
    display: grid;
    grid-template-columns: 60px 1fr 2fr;
    align-items: center;
    gap: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mwcu-card:hover {
    transform: translateY(-5px);
    box-shadow: -6px 5px 50px 10px rgba(0, 132, 180, 0.35);
}

/* Card Icon */
.mwcu-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mwcu-card-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Card Title */
.mwcu-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    text-align: left;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 15px;
}

/* Card Description */
.mwcu-card-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Card Content - Remove this since we're using grid now */
.mwcu-card-content {
    /* This class is no longer needed with grid layout */
}

/* AOS Enabled Styling */
.maverickwhychooseus.aos-enabled {
    /* Additional styling for animated blocks if needed */
}

/* Responsive Design */
@media (max-width: 768px) {
    .maverickwhychooseus {
        padding: 60px 0;
    }

    .mwcu-header {
        margin-bottom: 40px;
    }

    .mwcu-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .mwcu-subtitle {
        font-size: 1rem;
    }

    .mwcu-cards-grid {
        gap: 15px;
        margin-top: 30px;
    }

    .mwcu-card {
        padding: 25px 20px;
        gap: 20px;
        grid-template-columns: 50px 1fr 1.5fr;
    }

    .mwcu-card-icon img {
        width: 50px;
        height: 50px;
    }

    .mwcu-card-title {
        font-size: 1.25rem;
    }

    .mwcu-card-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .maverickwhychooseus {
        padding: 50px 0;
    }

    .mwcu-title {
        font-size: 1.75rem;
    }

    .mwcu-card {
        padding: 20px 15px;
        gap: 15px;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        text-align: center;
    }

    .mwcu-card-icon {
        justify-self: center;
    }

    .mwcu-card-icon img {
        width: 45px;
        height: 45px;
    }

    .mwcu-card-title {
        font-size: 1.125rem;
        text-align: center;
        border-right: none;
        padding-right: 0;
    }

    .mwcu-card-description {
        font-size: 0.85rem;
        text-align: center;
    }
}