/* Education Page Styles */

/* Page Title Section */
.page-title-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-description {
    font-size: 1.15rem;
    color: #6c757d;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.education-section {
    padding: 60px 0;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.education-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 42, 127, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 42, 127, 0.12);
}

.education-card .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
    color: var(--primary-color);
}

.education-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.education-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 20px;
    flex-grow: 1;
}

.education-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.education-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f5;
    color: #495057;
    font-size: 0.95rem;
    position: relative;
    padding-left: 25px;
}

.education-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.education-features li:last-child {
    border-bottom: none;
}

.education-advantages {
    background: #f8f9fa;
    padding: 60px 0;
    margin-top: 40px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-item {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 42, 127, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 42, 127, 0.12);
}

.advantage-item .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
    color: var(--primary-color);
}

.advantage-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.advantage-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #6c757d;
}

.education-cta {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    margin-top: 40px;
    color: #fff;
}

.education-cta h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.education-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    color: var(--secondary-color);
}

.intro-text {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.intro-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #495057;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.intro-text strong {
    color: #007bff;
    font-size: 1.2rem;
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.intro-text a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.intro-text a:hover {
    border-bottom-color: var(--primary-color);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .education-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .education-cta {
        padding: 40px 20px;
    }
    
    .education-cta h2 {
        font-size: 1.8rem;
    }
    
    .education-cta p {
        font-size: 1.1rem;
    }
    
    .intro-text p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
}