/* EEAT 2026 Curriculum Section Design */
.eeat-section {
    padding: 80px 5%;
    background-color: #f8f9fa; /* Soft, neutral background to match theme */
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.eeat-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+PHBhdGggZD0iTTAgMGg0MHY0MEgweiIgZmlsbD0ibm9uZSIvPjxwYXRoIGQ9Ik0wIDIwaDQwTTIwIDB2NDAiIHN0cm9rZT0icmdiYSgwLDAsMCwwLjAyKSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9zdmc+') repeat;
    opacity: 0.5;
    pointer-events: none;
}

.eeat-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.eeat-badge-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.eeat-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.eeat-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.eeat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #2563eb; /* Brand blue accent */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eeat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.eeat-card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2563eb;
}

.eeat-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.eeat-card p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.eeat-card strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .eeat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .eeat-section {
        padding: 60px 5%;
    }
    .eeat-header h2 {
        font-size: 2rem;
    }
    .eeat-grid {
        grid-template-columns: 1fr;
    }
}
