/* Reset some default browser styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Global styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

a {
    text-decoration: none;
    color: #007BFF;
}

/* Header styles */
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

header h1 {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

/* Hero/banner section styles */
#hero {
    background-image: url('mm_.jpg');
    background-size: cover;
    text-align: center;
    padding: 150px 0;
    color: #0;
}

#hero h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

#hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Services and Products section styles */
.service, .product {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service h3, .product h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* About section styles */
#about {
    background-color: #f9f9f9;
    padding: 40px 0;
}

#about p {
    font-size: 18px;
    line-height: 1.5;
}

/* Contact section styles */
#contact {
    background-color: #007BFF;
    color: #fff;
    padding: 60px 0;
}

#contact h2 {
    font-size: 28px;
    font-weight: bold;
}

#contact p {
    font-size: 18px;
    margin-top: 20px;
}

/* Footer styles */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

/* Responsive design (adjust as needed) */
@media screen and (max-width: 768px) {
    header {
        padding: 20px 0;
    }

    header h1 {
        font-size: 22px;
    }

    #hero {
        padding: 100px 0;
    }

    #hero h2 {
        font-size: 28px;
    }

    #hero p {
        font-size: 16px;
    }

    .service, .product {
        padding: 15px;
    }

    #about {
        padding: 20px 0;
    }

    #about p {
        font-size: 16px;
    }

    #contact {
        padding: 40px 0;
    }

    #contact h2 {
        font-size: 24px;
    }

    #contact p {
        font-size: 16px;
    }
}
