/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.academy-name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.slogan {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
}

/* Section Styles */
section {
    padding: 60px 20px;
}

.section-title {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.section-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.section-content p {
    margin-bottom: 20px;
}

/* About Section */
.about-section {
    background-color: #f8f9fa;
}

/* Courses Section */
.courses-section {
    background-color: #ffffff;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.course-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.course-card h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.course-card ul {
    list-style: none;
    margin-bottom: 15px;
}

.course-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.course-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2a5298;
    font-weight: bold;
}

.course-card p {
    color: #555;
    line-height: 1.6;
}

/* Founder Section */
.founder-section {
    background-color: #f8f9fa;
}

.founder-content {
    max-width: 800px;
    margin: 0 auto;
}

.founder-info {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.founder-name {
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.founder-qualification,
.founder-experience {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #444;
}

.founder-description {
    margin-top: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Features Section */
.features-section {
    background-color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: #e9ecef;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: #555;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 25px 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-width: 280px;
}

.contact-icon {
    font-size: 2.5rem;
}

.contact-item h3 {
    color: #1e3c72;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item p {
    color: #555;
    font-size: 1.1rem;
}

.contact-item a {
    color: #2a5298;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1e3c72;
    text-decoration: underline;
}

.contact-message {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Footer Styles */
.footer {
    background-color: #1e3c72;
    color: #ffffff;
    padding: 30px 20px;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .academy-name {
        font-size: 2rem;
    }

    .slogan {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-content {
        font-size: 1rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        flex-direction: column;
    }

    .contact-item {
        width: 100%;
    }

    .founder-info {
        padding: 25px;
    }

    section {
        padding: 40px 20px;
    }

    .header {
        padding: 40px 20px;
    }
}

@media screen and (max-width: 480px) {
    .academy-name {
        font-size: 1.6rem;
    }

    .slogan {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .course-card,
    .feature-card {
        padding: 20px;
    }

    .founder-info {
        padding: 20px;
    }

    .founder-name {
        font-size: 1.6rem;
    }
}
