/* GOOGLE FOR EDUCATION – CTA (SAFE EXTENSION)*/

@media (max-width: 767px) {
    .gfe-cta {
        padding: 40px 0;
    }

    .gfe-cta .cta-main-frame {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }

    .gfe-cta .cta-inner-content h2 {
        font-size: 1.5rem;
    }

    .gfe-cta .cta-inner-content p {
        font-size: 0.8125rem;
    }
}

/* GOOGLE FOR EDUCATION – KEY FEATURES SECTION */

.gfe-features-section {
    background-color: #ffffff;
    padding: 3.75rem 0;
}

.gfe-features-frame {
    max-width: 75rem;
    margin: 0 auto;
    padding: 2.5rem 1.25rem;
    border-radius: 0.625rem;
}

.gfe-features-header {
    text-align: center;
    margin-bottom: 50px;
}

.gfe-features-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #008ACF;
    margin-bottom: 0.9375rem;
}

.gfe-features-header p {
    font-size: 1rem;
    color: #505050;
    max-width: 50rem;
    margin: 0 auto;
    line-height: 1.6;
}

.gfe-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gfe-feature-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.875rem;
    box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 0.0625rem solid #eee;

}

.gfe-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 138, 207, 0.15);
    /* GFE Blue shadow */
}

.gfe-feature-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.gfe-feature-icon {
    width: 2.8125rem;
    height: 2.8125rem;
    background: #ffffff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gfe-feature-icon img {
    width: 1.5625rem;
    height: 1.5625rem;
    object-fit: contain;
}

.gfe-feature-header-row h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #008ACF;
    margin: 0;
}

.gfe-feature-content p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    margin-top: 0.625rem;
}

/* Feature Card Colors (from previous request context) */
.gfe-feature-card.lightblue {
    background-color: #E3F2FD;
}

.gfe-feature-card.green {
    background-color: #E8F5E9;
}

.gfe-feature-card.pink {
    background-color: #FCE4EC;
}

.gfe-feature-card.peach {
    background-color: #FFF3E0;
}

.gfe-feature-card.mint {
    background-color: #E0F2F1;
}

.gfe-feature-card.highlight-border {
    background: #ffffff;
    position: relative;
    border: 0.125rem solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #4285F4, #DB4437, #F4B400, #0F9D58) border-box;
    /* Google Colors */
    box-shadow: 0 0.25rem 0.9375rem rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .gfe-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gfe-features-grid {
        grid-template-columns: 1fr;
    }

    .gfe-features-header h2 {
        font-size: 1.75rem;
    }
}

/* Surface Duo / Small Tablet Adjustment */
@media (min-width: 481px) and (max-width: 768px) {
    .gfe-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gfe-feature-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .gfe-features-grid {
        grid-template-columns: 1fr;
    }
}