/* Reset some default styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #333;
}

/* Header Section */
header {
    background-color: #4CAF50;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    font-size: 24px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
}

header nav ul li a:hover {
    background-color: #45a049;
}

/* Main Sections */
main {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

section {
    margin-bottom: 40px;
    text-align: center;
}

/* Section Titles */
section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #4CAF50;
}

/* Home Section */
.home-section p {
    font-size: 18px;
    margin-top: 10px;
}

/* Services Section */
.services-section .service-container,
.products-section .product-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.service, .product {
    background-color: #f9f9f9;
    padding: 20px;
    border: 1px solid #ddd;
    width: 30%;
    min-width: 250px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-section {
    background-color: #f1f1f1;
    padding: 30px;
    border-radius: 8px;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
}
