/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #1f2a63;
    color: white;
    padding: 20px;
    text-align: center;
    position: sticky;
    top: 0;
}

header h1 {
    margin: 0;
    font-size: 36px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
#hero {
    background-color: #efefef;
    padding: 40px;
    text-align: center;
    background-image: url('../images/tutoring_bg.jpg'); /* Add a relevant background image */
    background-size: cover;
    color: #1f2a63;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

#hero h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

#hero p {
    font-size: 20px;
}

/* Services Section */
#services {
    padding: 50px;
    background-color: #ffffff;
    text-align: center;
}

#services h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#services p {
    font-size: 18px;
    margin-bottom: 20px;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    font-size: 20px;
    margin: 10px 0;
}

/* Subjects Section */
#subjects {
    padding: 50px;
    background-color: #1f2a63;
    color: white;
    text-align: center;
}

#subjects h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.subjects-list {
    list-style: none;
    padding: 0;
}

.subjects-list li {
    font-size: 20px;
    margin: 10px 0;
}

/* Tutor Profile */
#tutors {
    padding: 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.tutor-profile img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
}

.tutor-profile h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

/* Testimonials Section */
#testimonials {
    padding: 50px;
    background-color: #ffffff;
    text-align: center;
}

#testimonials h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

blockquote {
    font-size: 20px;
    font-style: italic;
    margin: 20px auto;
    width: 70%;
}

blockquote footer {
    margin-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

/* Contact Section */
#contact {
    padding: 50px;
    background-color: #efefef;
    text-align: center;
}

#contact form {
    display: inline-block;
    text-align: left;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
}

#contact label {
    display: block;
    margin: 10px 0 5px;
}

#contact input,
#contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#contact button {
    background-color: #1f2a63;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#contact button:hover {
    background-color: #394aad;
}

/* Footer */
footer {
    background-color: #1f2a63;
    color: white;
    text-align: center;
    padding: 20px;
}

footer a {
    color: white;
    text-decoration: underline;
}