* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

header {
    background-color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    height: 160px;
    width: auto;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .logo {
        height: 120px;
        margin-bottom: 1rem;
    }

    .products {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }
}

.quote-button {
    background-color: #B01116;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.quote-button:hover {
    background-color: #960E12;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    display: flex;
    gap: 5px;
    align-items: center;
}

.language-selector a {
    text-decoration: none;
    color: #333;
    padding: 2px 5px;
}

.language-selector a.active {
    color: #B01116;
    font-weight: bold;
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../static/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 2rem;
    text-align: center;
    color: white;
}

.hero h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.products {
    padding: 4rem 2rem;
    text-align: center;
    display: grid;
}

.products h2 {
    margin-bottom: 2rem;
    grid-column: 1 / -1;
    font-size: 2rem;
    color: #333;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.product-card:hover {
    border: 1px solid #006837;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.product-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #006837;
    text-decoration: none;
}

.contact {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../static/images/mesh-background.jpg');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.contact h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info {
    color: white;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    margin: 10px 0;
}

.contact-info .address {
    margin-top: 20px;
    line-height: 1.5;
}

.quote-form {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
}

.quote-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.form-section h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.submit-button {
    background-color: #B01116;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #960E12;
}

.product-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.flash-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    animation: fadeIn 0.5s;
}

.flash-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    box-shadow: 0 2px 4px rgba(21, 87, 36, 0.1);
}

.flash-message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    box-shadow: 0 2px 4px rgba(114, 28, 36, 0.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
```

```html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Your Company</title>
    <link rel="stylesheet" href="static/css/styles.css">
</head>
<body>
    <header>
        <div class="logo-container">
            <img src="static/images/logo.png" alt="Company Logo" class="logo">
        </div>
        <div class="header-right">
            <a href="#" class="quote-button">Request a Quote</a>
            <div class="language-selector">
                <a href="#" class="active">EN</a>
                <a href="#">ES</a>
            </div>
        </div>
    </header>

    <section class="hero">
        <h2>Welcome to Our Company</h2>
        <p>Your trusted partner for innovative solutions and quality products. Explore our offerings and let us help you achieve your goals.</p>
    </section>

    <section class="products">
        <h2>Our Products</h2>
        <div class="product-card">
            <img src="static/images/product1.jpg" alt="Product 1">
            <h3>Product 1</h3>
            <p>Description of Product 1. High-quality and designed for your needs.</p>
            <a href="#" class="read-more">Read More</a>
        </div>
        <div class="product-card">
            <img src="static/images/product2.jpg" alt="Product 2">
            <h3>Product 2</h3>
            <p>Description of Product 2. Innovative features and reliable performance.</p>
            <a href="#" class="read-more">Read More</a>
        </div>
        <div class="product-card">
            <img src="static/images/product3.jpg" alt="Product 3">
            <h3>Product 3</h3>
            <p>Description of Product 3. Advanced technology and excellent value.</p>
            <a href="#" class="read-more">Read More</a>
        </div>
    </section>

    <section class="contact">
        <h2>Contact Us</h2>
        <div class="contact-info">
            <p>Email: info@example.com</p>
            <p>Phone: +1 (555) 123-4567</p>
            <div class="address">
                Calle 24 De Octubre s/n (Auditorio Ejidal) <br>
                Colonia San Antonio El Desmonte <br>
                Pachuca, Hidalgo (Mexico) <br>
                CP 42083
            </div>
        </div>
    </section>

    <section class="quote-form">
        <h2>Request a Quote</h2>
        <div class="form-section">
            <h3>Your Information</h3>
            <div class="form-group">
                <label for="name">Name:</label>
                <input type="text" id="name" name="name">
            </div>
            <div class="form-group">
                <label for="email">Email:</label>
                <input type="email" id="email" name="email">
            </div>
            <div class="form-group">
                <label for="phone">Phone:</label>
                <input type="tel" id="phone" name="phone">
            </div>
        </div>

        <div class="form-section">
            <h3>Product Details</h3>
            <div class="form-group">
                <label for="product">Product of Interest:</label>
                <select id="product" name="product">
                    <option value="product1">Product 1</option>
                    <option value="product2">Product 2</option>
                    <option value="product3">Product 3</option>
                </select>
            </div>
            <div class="form-group">
                <label for="quantity">Quantity:</label>
                <input type="number" id="quantity" name="quantity">
            </div>
            <div class="form-group">
                <label for="details">Additional Details:</label>
                <textarea id="details" name="details"></textarea>
            </div>
        </div>

        <button type="submit" class="submit-button">Submit Request</button>
    </section>
</body>
</html>
```

```
Adding address to contact section and updating styles.css file to include styling for the address.
```

```replit_final_file
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

header {
    background-color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    height: 160px;
    width: auto;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .logo {
        height: 120px;
        margin-bottom: 1rem;
    }

    .products {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero {
        padding: 2rem 1rem;
    }
}

.quote-button {
    background-color: #B01116;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.quote-button:hover {
    background-color: #960E12;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    display: flex;
    gap: 5px;
    align-items: center;
}

.language-selector a {
    text-decoration: none;
    color: #333;
    padding: 2px 5px;
}

.language-selector a.active {
    color: #B01116;
    font-weight: bold;
}

.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../static/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 2rem;
    text-align: center;
    color: white;
}

.hero h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.products {
    padding: 4rem 2rem;
    text-align: center;
    display: grid;
}

.products h2 {
    margin-bottom: 2rem;
    grid-column: 1 / -1;
    font-size: 2rem;
    color: #333;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.product-card:hover {
    border: 1px solid #006837;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.product-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #006837;
    text-decoration: none;
}

.contact {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../static/images/mesh-background.jpg');
    background-size: cover;
    background-position: center;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.contact h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-info {
    color: white;
}

.contact-info {
    margin-top: 2rem;
}

.contact-info p {
    margin: 10px 0;
}

.contact-info .address {
    margin-top: 20px;
    line-height: 1.5;
}

.quote-form {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
}

.quote-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
}

.form-section h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.submit-button {
    background-color: #B01116;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #960E12;
}

.product-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.flash-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
    animation: fadeIn 0.5s;
}

.flash-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    box-shadow: 0 2px 4px rgba(21, 87, 36, 0.1);
}

.flash-message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    box-shadow: 0 2px 4px rgba(114, 28, 36, 0.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
```<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Your Company</title>
    <link rel="stylesheet" href="static/css/styles.css">
</head>
<body>
    <header>
        <div class="logo-container">
            <img src="static/images/logo.png" alt="Company Logo" class="logo">
        </div>
        <div class="header-right">
            <a href="#" class="quote-button">Request a Quote</a>
            <div class="language-selector">
                <a href="#" class="active">EN</a>
                <a href="#">ES</a>
            </div>
        </div>
    </header>

    <section class="hero">
        <h2>Welcome to Our Company</h2>
        <p>Your trusted partner for innovative solutions and quality products. Explore our offerings and let us help you achieve your goals.</p>
    </section>

    <section class="products">
        <h2>Our Products</h2>
        <div class="product-card">
            <img src="static/images/product1.jpg" alt="Product 1">
            <h3>Product 1</h3>
            <p>Description of Product 1. High-quality and designed for your needs.</p>
            <a href="#" class="read-more">Read More</a>
        </div>
        <div class="product-card">
            <img src="static/images/product2.jpg" alt="Product 2">
            <h3>Product 2</h3>
            <p>Description of Product 2. Innovative features and reliable performance.</p>
            <a href="#" class="read-more">Read More</a>
        </div>
        <div class="product-card">
            <img src="static/images/product3.jpg" alt="Product 3">
            <h3>Product 3</h3>
            <p>Description of Product 3. Advanced technology and excellent value.</p>
            <a href="#" class="read-more">Read More</a>
        </div>
    </section>

    <section class="contact">
        <h2>Contact Us</h2>
        <div class="contact-info">
            <p>Email: info@example.com</p>
            <p>Phone: +1 (555) 123-4567</p>
            <div class="address">
                Calle 24 De Octubre s/n (Auditorio Ejidal) <br>
                Colonia San Antonio El Desmonte <br>
                Pachuca, Hidalgo (Mexico) <br>
                CP 42083
            </div>
        </div>
    </section>

    <section class="quote-form">
        <h2>Request a Quote</h2>
        <div class="form-section">
            <h3>Your Information</h3>
            <div class="form-group">
                <label for="name">Name:</label>
                <input type="text" id="name" name="name">
            </div>
            <div class="form-group">
                <label for="email">Email:</label>
                <input type="email" id="email" name="email">
            </div>
            <div class="form-group">
                <label for="phone">Phone:</label>
                <input type="tel" id="phone" name="phone">
            </div>
        </div>

        <div class="form-section">
            <h3>Product Details</h3>
            <div class="form-group">
                <label for="product">Product of Interest:</label>
                <select id="product" name="product">
                    <option value="product1">Product 1</option>
                    <option value="product2">Product 2</option>
                    <option value="product3">Product 3</option>
                </select>
            </div>
            <div class="form-group">
                <label for="quantity">Quantity:</label>
                <input type="number" id="quantity" name="quantity">
            </div>
            <div class="form-group">
                <label for="details">Additional Details:</label>
                <textarea id="details" name="details"></textarea>
            </div>
        </div>

        <button type="submit" class="submit-button">Submit Request</button>
    </section>
</body>
</html>