 * {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      font-family: serif, sans-serif;
      background: #f4f4f4;
      color: #222;
    }
    header.hero {
      background: url('/images/One.jpg') no-repeat center center/cover;
      color: white;
      padding: 80px 20px;
      text-align: center;
      position: relative;
    }
    header.hero::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.6);
    }
    header.hero .content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: auto;
    }
    header.hero h1 {
      font-size: 2.5em;
    }
    header.hero p {
      font-size: 1.2em;
    }
    .btn {
      display: inline-block;
      padding: 12px 24px;
      margin-top: 20px;
      background: #f1503e;
      color: white;
      text-decoration: none;
      border-radius: 5px;
    }
    .container {
      max-width: 1000px;
      margin: auto;
      padding: 20px;
      /* background: white; */
    }

    section {
      margin: 40px 0;
    }
    .section-one{
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      column-gap: 20px;
    }
    .first-column{
      width: 50%;
    }
    
    .second-column{
      width: 48%;
      height: 500px;
    }
    .second-column img{
      width: 100%;
      height:100%;
      border-radius: 10px;
      object-fit: cover;

      
    }
    .offers-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     margin-top: 20px;
     }

     .offer-box {
      background-color: #f0f4f8;
      padding: 15px 20px;
      border-left: 5px solid #f1503e;
      border-radius: 6px;
      font-weight: 500;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
       }

    section h2 {
      color: #333;
      margin-bottom: 10px;
      font-size: 36px;
      margin-top: 0px;
      /* text-align: center; */
    }
    ul, ol {
      padding-left: 20px;
    }
    ul li, ol li {
      margin-bottom: 8px;
    }
    .features {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
    .features > div {
      flex: 1 1 45%;
      background: #f9f9f9;
      padding: 20px;
      border-radius: 5px;
    }
    .features h3{
      color: #f1503e;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
    }
    table, th, td {
      border: 1px solid #ccc;
    }
    th, td {
      padding: 10px;
      text-align: center;
    }
    footer {
      text-align: center;
      padding: 20px;
      background: #222;
      color: white;
    }
    @media (max-width: 768px) {
      .features > div {
        flex: 1 1 100%;
      }
      .section-one{
          display:block;
      }
      .first-column{
          width:100%;
      }
      .second-column{
          width:100%;
      }
    }