/* Feature Cards Section */
.feature-cards-section {
    width: 100%;
    background-color: #fefefe;
    padding: 60px 0px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    padding-bottom: 110px;
}

.feature-cards-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.feature-cards-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #222;
}

/* Grid Layout */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.feature-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    padding-top: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Feature Image */
.feature-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Title and Text */
.feature-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
    margin-top: 0;
}

.feature-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}




@media screen and (min-width: 11in) and (max-width: 15in) {

/* Feature Cards Section */
.feature-cards-section {
    width: 100%;
    background-color: #fefefe;
    padding: 60px 0px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    padding-bottom: 70px;
}

.feature-cards-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.feature-cards-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #222;
}

/* Grid Layout */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.feature-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    padding-top: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Feature Image */
.feature-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Title and Text */
.feature-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
    margin-top: 0;
}

.feature-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}


}