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

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

/* Hero Section */
.hero {
    background: #4a90e2;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.2rem;
    margin: 10px 0 20px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    color: #4a90e2;
    background: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.cta-button:hover {
    background: #333;
    color: #fff;
}

/* Services Section */
.services {
    padding: 60px 20px;
    text-align: center;
    background: #f9f9f9;
}

.services h2 {
    margin-bottom: 30px;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 280px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* About Section */
.about {
    padding: 60px 20px;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.contact h2 {
    margin-bottom: 30px;
}

form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
    text-align: left;
}

form input,
form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.submit-button {
    padding: 10px 20px;
    color: #fff;
    background: #4a90e2;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.submit-button:hover {
    background: #333;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}
