/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background-color: #333;
    padding: 1rem 2rem;
    color: white;
}

header .logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

header .nav-links {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

header .nav-links li {
    margin: 0 1rem;
}

header .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background-color: #007BFF;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-button {
    background-color: #28a745;
    color: white;
    padding: 0.8rem 2rem;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
}

/* About Section */
#about {
    padding: 3rem 2rem;
    background-color: white;
    text-align: center;
}

#about h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
#services {
    padding: 3rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

#services h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.services-list {
    display: flex;
    justify-content: space-around;
}

.service {
    background-color: white;
    padding: 2rem;
    width: 30%;
    margin: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service p {
    font-size: 1.1rem;
}

/* Contact Section */
#contact {
    padding: 3rem 2rem;
    background-color: white;
    text-align: center;
}

#contact form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

#contact form input, #contact form textarea {
    padding: 1rem;
    margin: 0.5rem 0;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#contact form button {
    background-color: #007BFF;
    color: white;
    padding: 1rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
}
