/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: #111;
    color: #fff;
}

/* Header */
header {
    background-color: #000;
    padding: 20px 0;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo img {
    width: 150px;
}
header nav ul {
    list-style: none;
    display: flex;
}
header nav ul li {
    margin: 0 15px;
}
header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background: url('img/hero-bg.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}
.cta-button {
    background-color: #007bff;
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
}

/* Services Section */
.services {
    padding: 50px 0;
    background-color: #222;
}
.services .container {
    text-align: center;
}
.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
}
.service-cards {
    display: flex;
    justify-content: space-around;
}
.card {
    background-color: #333;
    padding: 30px;
    border-radius: 10px;
    width: 30%;
    text-align: center;
}
.card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}
.card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}
.card p {
    font-size: 16px;
}

/* About Section */
.about {
    padding: 50px 0;
    background-color: #111;
    text-align: center;
}
.about p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background-color: #222;
}
.contact .container {
    text-align: center;
}
.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 20px;
    width: 100%;
}
label {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}
input, textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
textarea {
    height: 150px;
}
.submit-btn {
    background-color: #007bff;
    padding: 15px 30px;
    color: #fff;
    font-size: 18px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .service-cards {
        flex-direction: column;
        align-items: center;
    }
    .card {
        width: 80%;
        margin-bottom: 20px;
    }
    .cta-button {
        padding: 12px 25px;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 18px;
    }
}
