/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #000; /* Black text */
    background-color: #fff; /* White background */
}

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

/* Header */
header {
    background: #000; /* Black background */
    color: #E9CB00; /* Yellow text */
    padding: 10px 0; /* Adjust padding as needed */
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo img {
    height: 150px; /* Adjust height as needed */
    width: auto; /* Maintain aspect ratio */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #E9CB00; /* Yellow text */
    text-decoration: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: #E9CB00; /* Yellow background */
    color: #000; /* Black text */
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-button {
    background: #000; /* Black background */
    color: #E9CB00; /* Yellow text */
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.cta-button:hover {
    background: #333; /* Darker black on hover */
}

/* Services Section */
.services {
    padding: 60px 0;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #000; /* Black text */
}

.service-list {
    display: flex;
    justify-content: space-between;
}

.service-item {
    flex: 1;
    margin: 0 10px;
    padding: 20px;
    background: #f4f4f4; /* Light gray background */
    border-radius: 5px;
    color: #000; /* Black text */
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #E9CB00; /* Yellow text */
}

/* About Section */
.about {
    background: #000; /* Black background */
    color: #E9CB00; /* Yellow text */
    padding: 60px 0;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    text-align: center;
    background: #E9CB00; /* Yellow background */
    color: #000; /* Black text */
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    margin-bottom: 40px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #000; /* Black border */
    border-radius: 5px;
    background: #fff; /* White background */
    color: #000; /* Black text */
}

.contact form button {
    background: #000; /* Black background */
    color: #E9CB00; /* Yellow text */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact form button:hover {
    background: #333; /* Darker black on hover */
}

/* Footer */
footer {
    background: #000; /* Black background */
    color: #E9CB00; /* Yellow text */
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
}