/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background: #007BFF;
    color: #fff;
    padding: 1rem 0;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header h1 {
    font-size: 1.8rem;
}
header ul {
    list-style: none;
    display: flex;
    gap: 1rem;
}
header ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
header ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: url('https://via.placeholder.com/1920x500') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 4rem 0;
}
.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 2rem 0;
    background: #f4f4f4;
}
.about h2 {
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 2rem 0;
}
.services ul {
    list-style: disc inside;
    padding-left: 1rem;
}

/* Contact Section */
.contact {
    padding: 2rem 0;
    background: #007BFF;
    color: #fff;
}
.contact form {
    display: flex;
    flex-direction: column;
}
.contact label {
    margin-bottom: 0.5rem;
}
.contact input,
.contact textarea {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: none;
    border-radius: 4px;
}
.contact button {
    background: #fff;
    color: #007BFF;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-weight: bold;
}
.contact button:hover {
    background: #f4f4f4;
}

/* Footer */
footer {
    text-align: center;
    background: #222;
    color: #fff;
    padding: 1rem 0;
}

