/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7fc;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #007bff;
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar a.logo {
    font-size: 24px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.navbar ul {
    list-style-type: none;
    display: flex;
}

.navbar ul li {
    margin-left: 20px;
}

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

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

/* Hero Section */
.hero {
    background: url('images/hero-bg.jpg') no-repeat center center/cover;
    height: 400px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
}

.hero .btn {
    background-color: #ff6600;
    color: white;
    padding: 10px 30px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
}

.hero .btn:hover {
    background-color: #e65c00;
}

/* About Section */
.about {
    padding: 50px 0;
    background-color: white;
}

.about h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
}

.about p {
    text-align: center;
    font-size: 1.1em;
}

/* Services Section */
.services {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.services h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.service-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
}

.service-card img {
    max-width: 100%;
    border-radius: 8px;
}

.service-card h3 {
    margin-top: 20px;
    font-size: 1.5em;
}

.service-card p {
    font-size: 1em;
    margin-top: 10px;
}

/* Schedule Section */
.schedule {
    padding: 50px 0;
    background-color: white;
}

.schedule h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    text-align: center;
}

table th, table td {
    padding: 15px;
    border: 1px solid #ddd;
}

table th {
    background-color: #007bff;
    color: white;
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.contact h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

.contact p {
    text-align: center;
    font-size: 1.1em;
}

.contact a {
    color: #007bff;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #007bff;
    color: white;
    padding: 20px 0;
    text-align: center;
}
