* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #ff8c00;
    padding: 15px 0;
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar .logo h1 {
    font-size: 28px;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.nav-links a:hover {
    color: #ffcb00;
}

.hero {
    background-color: #ffcb00;
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.hero-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ff8c00;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    font-weight: 600;
}

.cta-button:hover {
    background-color: #e77f00;
}

section {
    padding: 60px 20px;
    text-align: center;
}

.container {
    width: 85%;
    margin: 0 auto;
}

.about p {
    font-size: 18px;
    margin: 15px auto;
    max-width: 800px;
}

.courses .course-list {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.course {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    width: 30%;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.course:hover {
    transform: translateY(-10px);
}

.course h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ff8c00;
}

.testimonials .testimonial {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
    width: 70%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 10px;
}

.contact p {
    font-size: 18px;
    margin: 10px 0;
}

footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
}

footer .footer-links a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

footer .footer-links a:hover {
    color: #ffcb00;
}
