/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    text-align: left;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    background: #333;
    color: white;
    padding: 20px 0;
}

header h1 {
    font-size: 40px;
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: block;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #f4f4f4;
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: #007BFF;
    color: white;
    padding: 60px 0;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hero img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* About Section */
.about {
    background: white;
    padding: 60px 0;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    color: #555;
}

/* Services Section */
.services {
    background: #f4f4f4;
    padding: 60px 0;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.services p {
    font-size: 18px;
    color: #555;
}

.services img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

/* Products Section */
.products {
    background: white;
    padding: 60px 0;
}

.products h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.product-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.product-grid img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 10px;
}

/* Contact Section */
.contact {
    background: #007BFF;
    color: white;
    padding: 60px 0;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact a {
    color: white;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background: #333;
    color: white;
    padding: 20px 0;
}

footer p {
    margin: 0;
    font-size: 16px;
}
