.quality-section {
    padding: 40px 20px;
    text-align: center;
    background: #ffffff;
}

.quality-section h2 {
    font-size: 2rem;
    color: rgb(2, 109, 20);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quality-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}

.quality-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, rgb(2, 109, 20), #94d2bd);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.feature h3 {
    font-size: 1.3rem;
    color: rgb(2, 109, 20);
    margin-bottom: 10px;
    font-weight: bold;
}

.feature p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}
.footer-highlight {
    background-color: #c1ffb5;  /* Yellow background for highlight */
    transition: background-color 0.5s ease;  /* Smooth transition */
}