/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 60px;
    /* Adjusted for the new PNG logo dimensions */
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f4b400;
}

/* Hero Section */
#hero .hero-image {
    background: url('images/hero.png') no-repeat center center/cover;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#hero .hero-text {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    border-radius: 5px;
    text-align: center;
}

#hero .hero-text h1 {
    color: #fff;
    font-size: 48px;
    margin-bottom: 10px;
}

#hero .hero-text p {
    color: #fff;
    font-size: 24px;
}

/* About: Vision & Mission */
#about {
    padding: 40px 0;
}

#about h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
}

.vision-mission {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.vision,
.mission {
    flex: 1;
    min-width: 300px;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 5px;
}

/* Company History */
#history {
    padding: 40px 0;
    background: #fafafa;
}

#history h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
}

#history p {
    margin-bottom: 15px;
}

/* Products */
#products {
    padding: 40px 0;
}

#products h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
}

.product-category {
    background: #f4f4f4;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.product-category img {
    width: 200px;
    height: auto;
    border-radius: 5px;
    margin-right: 20px;
}

.product-info {
    flex: 1;
}

.product-info h3 {
    margin-bottom: 10px;
}

.product-info ul {
    list-style: disc;
    margin-left: 20px;
}

/* Contact */
#contact {
    padding: 40px 0;
    background: #fafafa;
}

#contact h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
}

#contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

#contact label {
    margin-bottom: 5px;
    font-weight: bold;
}

#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 100%;
}

#contact textarea {
    resize: vertical;
    height: 150px;
}

#contact button {
    padding: 10px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s;
}

#contact button:hover {
    background: #f4b400;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .vision-mission {
        flex-direction: column;
    }

    .product-category {
        flex-direction: column;
        text-align: center;
    }

    .product-category img {
        margin: 0 auto 20px;
    }

    .header-container {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        margin-top: 10px;
    }

    nav ul li {
        margin: 10px 0;
    }
}

.disclaimer {
    font-size: 0.8em;
    color: #bbb;
    margin-top: 10px;
}