<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

  <meta name="viewport" content="width=device-width, initial-scale=1.0" />

  <title>Laboratorio Fleming SpA</title>

  <style>

    body {

      margin: 0;

      font-family: Arial, sans-serif;

      background-color: #ffffff;

      color: #333;

    }

    header {

      background-color: #0066cc;

      color: white;

      padding: 20px;

      text-align: center;

    }

    .hero {

      background: url('hero-warehouse.jpg') center/cover no-repeat;

      height: 400px;

      display: flex;

      align-items: center;

      justify-content: center;

      color: white;

      text-shadow: 1px 1px 2px #000;

      font-size: 2rem;

    }

    .section {

      padding: 40px 20px;

      max-width: 1200px;

      margin: auto;

    }

    .section h2 {

      color: #0066cc;

      margin-bottom: 20px;

    }

    .grid {

      display: grid;

      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

      gap: 20px;

    }

    .card {

      background-color: #f5f5f5;

      padding: 20px;

      border-radius: 8px;

      box-shadow: 0 2px 5px rgba(0,0,0,0.1);

    }

    .footer {

      background-color: #004d99;

      color: white;

      text-align: center;

      padding: 20px;

      margin-top: 40px;

    }

    img {

      width: 100%;

      border-radius: 8px;

    }

  </style>

</head>

<body>

  <header>

    <h1>Laboratorio Fleming SpA</h1>

    <p>Leading Pharmaceutical Distribution in Chile & Latin America</p>

  </header>


  <div class="hero">

    Ensuring Access to Quality Medicines Nationwide

  </div>


  <section class="section">

    <h2>About Us</h2>

    <p>Laboratorio Fleming SpA is a fast-growing pharmaceutical company with a decade of leadership in Chile and Latin America, serving both retail and public healthcare sectors.</p>

  </section>


  <section class="section">

    <h2>Our Infrastructure</h2>

    <div class="grid">

      <div class="card">

        <img src="warehouse.jpg" alt="Warehouse" />

        <p>Located near Santiago International Airport with over 10,000 pallet positions for efficient distribution.</p>

      </div>

      <div class="card">

        <img src="lab-workers.jpg" alt="Lab Workers" />

        <p>Partnered with 5 quality control labs, capable of releasing 200+ batches monthly, ensuring high-quality standards.</p>

      </div>

    </div>

  </section>


  <section class="section">

    <h2>Market Presence</h2>

    <div class="grid">

      <div class="card">

        <img src="pharmacist.jpg" alt="Pharmacist" />

        <p>Retail: Over 4,000 pharmacies via Cruzverde, Salcobrand, Ahumada, and Dr Simi — covering 90% of the market.</p>

      </div>

      <div class="card">

        <img src="doctor.jpg" alt="Doctor" />

        <p>Public: Serving 1,000+ points with Cenabast including hospitals, clinics, and municipalities across Chile.</p>

      </div>

    </div>

  </section>


  <section class="section">

    <h2>Leadership & Vision</h2>

    <div class="card">

      <img src="ceo-placeholder.jpg" alt="CEO" />

      <p>Led by an experienced CEO with a proven track record, Fleming is committed to expanding access to high-quality medicines.</p>

    </div>

  </section>


  <div class="footer">

    &copy; 2025 Laboratorio Fleming SpA | Contact | Privacy Policy

  </div>

</body>

</html>