/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #f8f9fa;
    color: #333;
}

/* Header and Navigation */
header {
    background: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    transition: 0.3s;
}

nav ul li a:hover {
    background: #3498db;
    border-radius: 5px;
}

/* Section Styling */
section {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-us {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 15px;
    text-align: justify;
}

/* Products & Services List */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: #ecf0f1;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
}

/* Contact Form */
form {
    max-width: 500px;
    margin: 20px auto;
    text-align: left;
}

form label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    background: #2c3e50;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
}

form button:hover {
    background: #3498db;
}

#formMessage {
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
}

/* Reviews Section */
.review {
    background: #ecf0f1;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
}

.review h4 {
    margin-top: 10px;
    color: #2c3e50;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        margin: 5px 0;
    }

    section {
        width: 90%;
    }
}
