/* Container */
.why-choose-container-34701a45 {
    width: 100%;
    background-color: #f8f9fa; /* Light background for contrast */
    padding: 60px 20px;
    border-radius: 20px;
}

/* Header */
.why-choose-header-34701a45 {
    margin-bottom: 50px;
}

.why-choose-subtitle-34701a45 {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose-main-title-34701a45 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    color: #1a1a1a;
}

/* Grid */
.why-choose-grid-34701a45 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card */
.why-choose-card-34701a45 {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

/* Alignment utilities injected by prefix_class */
.why-choose-align-center .why-choose-card-34701a45 {
    align-items: center;
    text-align: center;
}

.why-choose-align-right .why-choose-card-34701a45 {
    align-items: flex-end;
    text-align: right;
}

.why-choose-align-left .why-choose-card-34701a45 {
    align-items: flex-start;
    text-align: left;
}


.why-choose-card-34701a45:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Icon Wrap */
.why-choose-icon-wrap-34701a45 {
    width: 60px;
    height: 60px;
    background-color: #4a72ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.why-choose-icon-wrap-34701a45 i {
    font-size: 24px;
    color: #fff;
    transition: all 0.3s ease;
}
.why-choose-icon-wrap-34701a45 svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    transition: all 0.3s ease;
}

/* Card Typography */
.why-choose-title-34701a45 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.why-choose-desc-34701a45 {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

/* Button */
.why-choose-btn-34701a45 {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #4a72ff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto; /* Pushes button to bottom if cards are different heights */
}

.why-choose-btn-34701a45 i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.why-choose-btn-34701a45:hover i {
    transform: translateX(5px);
}
