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

body {
    font-family: 'Arial', sans-serif;
    background-color: #fafafa;
    color: #333;
}

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

header {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0;
    text-align: center;
    border-bottom: 5px solid #f39c12;
}

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

header p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #f39c12;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

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

.about, .services, .form-section {
    padding: 50px 0;
    text-align: center;
}

.about h2, .services h2, .form-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about p, .services p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.services {
    background-color: #ecf0f1;
}

.service-item {
    background-color: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    font-size: 1.8em;
    color: #f39c12;
    margin-bottom: 15px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    margin: 0 auto;
}

label {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #555;
    text-align: left;
    width: 100%;
    margin-left: 10%;
}

input, textarea {
    width: 80%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

textarea {
    resize: vertical;
}

button {
    background-color: #f39c12;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
    width: 80%;
    margin-top: 20px;
}

button:hover {
    background-color: #e67e22;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
}

footer p {
    font-size: 1em;
    color: #bdc3c7;
}
