/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Navigation */
nav {
    background: #333;
    color: #fff;
    padding: 10px 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 10px;
}

/* Hero Section */
#hero {
    background: url('hero-background.jpg') no-repeat center center/cover;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 5px;
}

.hero-button {
    display: inline-block;
    padding: 10px 20px;
    background: #e8491d;
    color: #fff;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
}

.hero-button:hover {
    background: #d7380f;
}

/* Services Section */
#services {
    padding: 20px 0;
    text-align: center;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.card {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 5px;
    width: 30%;
}

.card h3 {
    margin-top: 0;
}

/* Contact Section */
#contact {
    padding: 20px 0;
    text-align: center;
    background: #333;
    color: #fff;
}

#contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact-form input, 
#contact-form textarea {
    width: 50%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

#contact-form button {
    padding: 10px 20px;
    background: #e8491d;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#contact-form button:hover {
    background: #d7380f;
}
