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

header {
    background-color: #00274d;
    color: white;
    padding: 30px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 48px;
    letter-spacing: 2px;
}

header p {
    font-size: 18px;
    margin-top: 10px;
}

section {
    padding: 50px;
    margin: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* About Section */
#about {
    text-align: center;
}

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

#about p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Coaching Areas */
#coaching-areas {
    background-color: #00274d;
    color: white;
    text-align: center;
}

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

#coaching-areas p {
    font-size: 18px;
}

.services-list {
    list-style: none;
    padding: 0;
    display: inline-block;
    margin: 20px 0;
}

.services-list li {
    font-size: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    color: #e6e6e6;
}

/* Sports Coaching */
#sports-coaching h2, #leadership-coaching h2, #personal-development h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.sports-details, .leadership-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.sports-details h3, .leadership-details h3 {
    font-size: 24px;
    color: #00274d;
    margin-bottom: 10px;
}

.sports-details p, .leadership-details p {
    font-size: 18px;
    width: 45%;
    margin-bottom: 20px;
}

#personal-development p {
    font-size: 18px;
    text-align: center;
}

/* Testimonials */
#testimonials {
    background-color: #f4f4f4;
    text-align: center;
}

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

blockquote {
    font-size: 20px;
    font-style: italic;
    margin: 30px auto;
    width: 80%;
    padding: 20px;
    background-color: #e6e6e6;
    border-radius: 8px;
}

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

/* Contact Section */
#contact {
    text-align: center;
}

#contact form {
    display: inline-block;
    width: 100%;
    max-width: 500px;
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact label {
    display: block;
    margin: 10px 0 5px;
    font-size: 18px;
}

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

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

#contact button:hover {
    background-color: #00529b;
}

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

footer p {
    margin: 0;
}

footer a {
    color: #e6e6e6;
    text-decoration: underline;
}