body {
    font-family: 'Outfit', sans-serif;
    background-color: #f4f4f4; /* Soft light background */
    color: #333;
    line-height: 1.6;
}

.containers {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #2c3e50; /* Darker background */
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #ecf0f1; /* Light text color */
}

.btn {
    background-color: #e67e22; /* Warm orange */
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #d35400; /* Darker orange on hover */
    transform: translateY(-2px);
}

.featured-courses {
    padding: 40px 20px;
    text-align: center;
}

.featured-courses h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #34495e; /* Darker heading color */
}

.course-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.course-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.course-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.course-item h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #2980b9; /* Soft blue for course titles */
}

.course-item p {
    margin-bottom: 15px;
    color: #7f8c8d; /* Grey for descriptions */
}

.student-testimonials {
    padding: 40px 20px;
    background: #ecf0f1; /* Light background for testimonials */
    text-align: center;
}

.student-testimonials h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #34495e;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    transition: transform 0.3s;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-card h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
    color: #2980b9;
}

.testimonial-card h4 {
    font-size: 1rem;
    color: #777;
}

.registration-form {
    padding: 40px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 500px;
}

.registration-form h2 {
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
    color: #2980b9;
}

.registration-form label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.registration-form input,
.registration-form select {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.registration-form input:focus,
.registration-form select:focus {
    border-color: #2980b9; /* Focus color */
    box-shadow: 0 0 5px rgba(41, 128, 185, 0.5);
    outline: none;
}

.resources {
    padding: 40px 20px;
}

.resources h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    color: #34495e;
}

.resource-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.resource-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.resource-item:hover {
    transform: translateY(-3px);
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #2c3e50;
    color: #ecf0f1;
    position: relative;
}
