/* Why choose us */
.why-choose-us {
    background-color: #ffffff;
    padding: 60px 0;
}

.why-choose-us .container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Section Title */
.why-choose-us h2 {
    font-size: 2.5rem;
    color: #057c85; /* Pink color to match the Carnation Joy theme */
    margin-bottom: 40px;
}

.section-description {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 60px;
}

/* Values Container */
.values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Ensures even spacing between columns */
    gap: 30px;
}

/* Individual Value Items */
.value-item {
    flex: 1 1 calc(33.33% - 20px); /* Ensures each value-item takes one-third of the width */
    padding: 20px;
    box-sizing: border-box;
    min-width: 280px; /* Ensures responsiveness */
    gap: 30px;
}

.value-item img {
    width: 80px;
    margin-bottom: 25px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #057c85; /* Pink color for heading */
}

.value-item p {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Optional: Add a line above each item */
.value-item::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #057c85; /* Pink color for the line */
    margin-bottom: 60px;
    border-radius: 1px;
}


