body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: white;
}

/* Header Styling */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f4F0EE;
    border-bottom: 2px solid #000000;
    flex-wrap: wrap;
    padding: 10px;
}

.main-div {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

header a {
    text-decoration: none;
    color: black;
}

.logo {
    height: 50px;
    width: 50px;
    margin: 0 10px 0 20px;
}

.company_name {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 5px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 10px 20px;
    background-color: #f4F0EE;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    padding: 8px;
}

nav ul li a:hover {
    color: red;
}

.menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    background-color: white;
    color: black;
}

.sidebar {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: #f4F0EE;
    color: black;
    padding-top: 20px;
    z-index: 1000;
    border: #646464 solid;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    padding: 10px 20px;
    text-align: left;
}

.sidebar ul li a {
    color: black;
    text-decoration: none;
}

.sidebar ul li a:hover {
    color: red;
}

.sidebar.active {
    display: block;
}

/* Product Info Styling */
.product-info {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    padding: 60px;
    gap: 40px;
}

.product-info img {
    max-width: 100%;
    height: auto;
}

.Description {
    text-align: justify;
    padding: 20px;
    width: 60%;
}

.description-text {
    font-size: 20px;
    margin: 20px;
}

button {
    background-color: #DA242C;
    color: white;
    height: 50px;
    width: 200px;
    margin-top: 40px;
    font-size: 20px;
    border-radius: 20px;
}

button:hover {
    transform: scale(1.15);
}

/* Contact Info Styling */
.contact-info {
    padding: 20px;
    text-align: center;
}

.contact-info a {
    color: red;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-text {
    font-size: 40px;
    color: #DA242C;
    font-family: 'Inter', ui-sans-serif;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
    border-top: 2px solid #e0e0e0;
}

h1 {
    color: #DA242C;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #f8f8f8;
        width: 100%;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .menu-btn {
        display: block;
    }

    nav ul.active {
        display: flex;
    }

    .logo {
        height: 30px;
        width: 30px;
    }

    .company_name {
        font-size: 15px;
    }

    .product-info {
        flex-direction: column;
        align-items: center;
        padding: 30px;
    }

    .Description {
        width: 100%;
        padding: 10px;
        text-align: center;
    }

    .description-text {
        font-size: 18px;
        margin: 10px;
    }

    button {
        width: 100%;
        margin-top: 20px;
    }

    .contact-text {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .product-info {
        padding: 20px;
    }

    .Description {
        padding: 10px;
    }

    .description-text {
        font-size: 16px;
        margin: 10px;
    }

    .logo {
        height: 40px;
        width: 40px;
    }

    .company_name {
        font-size: 18px;
    }

    button {
        height: 40px;
        font-size: 18px;
    }

    .contact-text {
        font-size: 24px;
    }

    footer {
        padding: 15px;
    }
}
