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

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

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

/* Header */
header {
    background-color: #111;
    color: white;
    padding: 20px 0;
}

header .logo h1 {
    margin-left: 20px;
    font-size: 1.8rem;
}

header nav ul {
    list-style-type: none;
    text-align: right;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

header nav ul li a:hover {
    color: #f39c12;
}

/* Hero Section */
.hero {
    background: url('hero-image.jpg') no-repeat center center/cover;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #f39c12;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

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

/* Section About */
.about {
    background-color: white;
    padding: 60px 0;
    text-align: center;
}

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

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

.services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.service-item {
    margin-bottom: 30px;
    text-align: center;
}

.service-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    background-color: white;
    padding: 60px 0;
}

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

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

.contact button {
    background-color: #f39c12;
    color: white;
    padding: 15px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

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

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

footer .social-links a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
}

footer .social-links a:hover {
    color: #f39c12;
}
