.eduContainer {
    max-width: 1400px;
    margin: 120px auto 0;
    position: relative;
    z-index: 2;
}

.eduContainer .pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(77, 133, 240, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(50, 168, 82, 0.05) 0%, transparent 25%);
    z-index: 1;
}

.eduContainer .header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.eduContainer .logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.eduContainer .logo i {
    font-size: 36px;
    color: #1a73e8;
}

.eduContainer .logo h1 {
    font-size: 32px;
    font-weight: 700;
    color: #0d47a1;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.eduContainer .header .tagline {
    font-size: 22px;
    color: #1e3a8a;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.eduContainer .cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.eduContainer .feature-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(13, 71, 161, 0.15);
    display: flex;
    height: 500px;
    position: relative;
}

.eduContainer .card-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.eduContainer .feature-card .image-placeholder {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.eduContainer .feature-card .card-content::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 60px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.eduContainer .card-title {
    font-size: 42px;
    font-weight: 800;
    color: #0d47a1;
    margin-bottom: 25px;
    line-height: 1.2;
    text-align: left;
}

.eduContainer .card-subtitle {
    font-size: 24px;
    color: #1a73e8;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
}

.eduContainer .card-description {
    font-size: 20px;
    line-height: 1.8;
    color: #37474f;
    margin-bottom: 40px;
    max-width: 600px;
    text-align: left;
}

.eduContainer .btn {
    background: linear-gradient(to right, #1a73e8, #4285f4);
    color: white;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(26, 115, 232, 0.3);
}

.eduContainer .btn:hover {
    background: linear-gradient(to right, #0d47a1, #1a73e8);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 115, 232, 0.4);
}
.eduContainer .feature-card i {
    color: #fff;
    margin-bottom: 0;
    font-size: 18px;
}

.eduContainer .feature-card .image-placeholder {
    position: relative;
    overflow: hidden;
}

.eduContainer .image-caption {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 16px;
    color: #0d47a1;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.eduContainer .secondary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.eduContainer .card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.eduContainer .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 71, 161, 0.15);
}

.eduContainer .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background: linear-gradient(to bottom, #1a73e8, #0d47a1);
}

.eduContainer .card-left {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.eduContainer .card-content-small {
    flex: 1;
}

.eduContainer .card-content-small .card-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.eduContainer .card-content-small .card-description {
    font-size: 18px;
    margin-bottom: 25px;
}

.eduContainer .image-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(26, 115, 232, 0.9);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}