<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>About the U.S. Olympic & Paralympic Committee</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      line-height: 1.6;
      background-color: #fff;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 20px;
    }
    .heading {
      font-size: 2.5em;
      font-weight: 900;
      color: #00154f;
    }
    .gold-bar {
      width: 80px;
      height: 5px;
      background-color: gold;
      margin: 10px 0 20px;
    }
    .content {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }
    .text {
      flex: 1 1 500px;
    }
    .image-section {
      flex: 1 1 500px;
    }
    .image-section img {
      max-width: 100%;
      height: auto;
    }
    .caption-box {
      background-color: #00154f;
      color: white;
      padding: 20px;
      margin-top: -5px;
    }
    .caption-box p {
      margin: 0;
      font-size: 1.1em;
    }
    .button {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 20px;
      border: 2px solid #00154f;
      color: #00154f;
      text-decoration: none;
      font-weight: bold;
      border-radius: 5px;
      transition: background-color 0.3s;
    }
    .button:hover {
      background-color: #00154f;
      color: white;
    }
  </style>
</head>
<body>
  <div class="container">
    <div class="heading">ABOUT THE U.S. OLYMPIC & PARALYMPIC COMMITTEE</div>
    <div class="gold-bar"></div>
    <div class="content">
      <div class="text">
        <p>Founded in 1894 and headquartered in Colorado Springs, Colorado, the U.S. Olympic & Paralympic Committee serves as both the National Olympic Committee and National Paralympic Committee for the United States. The U.S. Olympic & Paralympic Committee is focused on protecting, supporting and empowering America's athletes, and is responsible for fielding U.S. teams for the Olympic, Paralympic, Youth Olympic, Pan American and Parapan American Games, and serving as the steward of the Olympic and Paralympic movements in the U.S.</p>

        <p>A federally chartered nonprofit corporation, the U.S. Olympic & Paralympic Committee does not receive federal financial support (other than for select Paralympic military veteran programs) and is one of the only NOCs in the world that also manages Paralympic activities.</p>

        <p>Approximately 82% of the U.S. Olympic & Paralympic Committee's budget has a direct impact on its mission of supporting athletes via a variety of programs for both athletes and their National Governing Bodies. In addition to performance grants and rewards, additional support is provided in the form of training facilities, sports medicine and science, coaching education, health insurance, promotional opportunities, education and career services, outfitting and travel, and safe sport and anti-doping programming.</p>

        <a class="button" href="#">LEARN MORE</a>
      </div>
      <div class="image-section">
        <img src="/mnt/data/Screenshot 2025-04-25 at 10.34.48 PM.png" alt="USOPC Team Group" />
        <div class="caption-box">
          <p>"WE EMPOWER TEAM USA ATHLETES TO ACHIEVE SUSTAINED COMPETITIVE EXCELLENCE AND WELL-BEING."<br>- Mission Statement</p>
        </div>
      </div>
    </div>
  </div>
</body>
</html>