/* choose-us.css */

/* Section styling */
.choose-us-section {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.choose-us-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #016b61;
    margin-bottom: 1rem;
}

.choose-us-section p.section-subtitle {
    text-align: center;
    color: #064d44;
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

/* Grid */
.choose-us-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
    .choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .choose-us-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Cards */
.choose-us-card {
    background: linear-gradient(to bottom right, #028c74, #016b61);
    padding: 2rem;
    border-radius: 1.875rem;
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-us-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

.choose-us-card .icon {
    font-size: 2.5rem;
    color: #fff23d;
    margin-bottom: 1rem;
}

.choose-us-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f5ee8e;
}

.choose-us-card p {
    color: #f5ee8e;
}

.choose-us-button {
    width: 220px;
    display: block;          /* important */
    margin: 0 auto;          /* centers the button */
    background-color: #fff23d;
    color: #016b61;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-align: center;   /* centers text */
    margin-top: 2rem;   
}

.choose-us-button:hover {
    background-color: #f7e23d;
}
