    body {
      margin: 0;
      font-family: Arial, sans-serif;
      color: #333;
      background-color: #fff;
    }

    header {
      background:#f5f5f5; 
      background: url('img/1500x400_3.png ') no-repeat center center/cover;
      text-align: left;
      padding: 50px 20px;
      color: #f2f2f2;
      position: relative;
    }

    header h1 {
      font-size: 3em;
      margin-bottom: 15px;
    }

    header p {
      font-size: 1.3em;
      max-width: 700px;
     /* margin: 0 auto 25px;*/
    }

    .btn {
      display: inline-block;
      margin: 5px;
      padding: 12px 25px;
      font-size: 1em;
      border-radius: 5px;
      text-decoration: none;
      transition: 0.3s ease;
    }

    .btn-dark {
      background: #000;
      color: #fff;
      border: none;
    }

    .btn-dark:hover {
      background: #444;
    }

    .btn-outline {
      border: 2px solid #000;
      color: #000;
      background: transparent;
    }

    .btn-outline:hover {
      background: #000;
      color: #fff;
    }

    section {
      padding: 60px 20px;
      text-align: center;
    }

    section h2 {
      font-size: 2.5em;
      margin-bottom: 40px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .stat {
      background: #f9f9f9;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .stat h3 {
      font-size: 2em;
      margin-bottom: 10px;
      color: #000;
    }

    .stat p {
      margin: 0;
      font-size: 1em;
    }