/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

/* Header and Navigation */
header {
    background-color: #000;
    padding: 15px 0;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav img {
    height: 40px;
}

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

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.icons a {
    margin-left: 10px;
    color: #fff;
}

/* Contact Page Banner */
.contact-banner {
    background: url('Images/contact-banner.jpg') no-repeat center center/cover;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.contact-banner p {
    font-size: 14px;
}

/* Contact Form Section */
.contact-container {
    max-width: 1100px;
    margin: 50px auto;
    text-align: center;
}

.contact-container h2 {
    font-size: 28px;
}

.contact-container p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

/* Contact Content */
.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    text-align: left;
}

.contact-info {
    width: 35%;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}

.contact-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
}

/* Contact Form */
.contact-form {
    width: 60%;
}

.contact-form label {
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    height: 100px;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #000;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #444;
}

/* Footer */
footer {
    background-color: #f9f9f9;
    padding: 30px 0;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer-logo {
    font-size: 20px;
    font-weight: bold;
}

.footer-links,
.footer-help {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-links p,
.footer-help p {
    font-weight: bold;
}

.footer-links a,
.footer-help a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
}

.newsletter input {
    width: 200px;
    padding: 8px;
    margin-right: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.newsletter button {
    padding: 8px 15px;
    background-color: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .newsletter input, .newsletter button {
        width: 100%;
        margin-top: 5px;
    }
}