* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    background-color: #FEFAF1;
  }
  
  header {
    display: flex;
    align-items: center;
    height: 100px;
    padding: 0 20px;
    background-color: #FEFAF1;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  header img {
    height: 90px;
  }
  
  .section {
    padding: 40px 20px;
  }
  
  .section-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
  
  .section-1-left {
    flex: 1;
    min-width: 300px;
    margin-left: 50px;
  }
  
  .section-1-left h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .section-1-left p {
    margin-bottom: 20px;
    max-width: 600px;
  }
  
  .section-1-left h5 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .access-button {
    width: 100%;
    max-width: 400px;
    height: 40px;
    background: linear-gradient(90deg, #8B0000, #8B0000);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
  }
  
  .access-button:hover {
    opacity: 0.8;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    max-width: 400px;
  }
  
  .social-icons a {
    width: 60px;
    height: 60px;
    i {
      color: #8B0000;
      font-size: 40px;
    }
  }
  
  .section-1-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
  }
  
  .section-1-right img {
    width: 100%;
    max-width: 500px;
    margin-top: -50px;
  }
  
  .section-2 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  
  .section-2-left {
    background-color: #8B0000;
    color: white;
    flex: 1;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
  }
  
  .section-2-left h2 {
    font-size: 32px;
    text-align: center;
  }
  
  .section-2-right {
    flex: 1;
    min-width: 100%;
    padding: 40px 20px;
  }
  
  .section-2-right h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .section-2-right p {
    max-width: 600px;
    margin-bottom: 20px;
  }
  
  @media (min-width: 768px) {
    .section-2-left {
      min-width: 0;
      width: 50%;
    }
  
    .section-2-right {
      min-width: 0;
      width: 50%;
    }
  
    .section-2 {
      flex-wrap: nowrap;
    }
  }
  
  @media (max-width: 768px) {
    .section-1 {
      margin-left: -40px;
      margin-top: -40px;
    }

    .section-1-left {
        text-align: center;
    }

    .section-1-left h5 {
        margin-top: 60px;
    }


    .section-1-right img {
        margin-top: 0 !important;
    }
  
    .section-2-left {
      height: 300px;
    }

    .section-2-right {
        text-align: center;
    }
  }
  
  .section-3 {
    background-color: #ffd6c5;
  }
  
  .section-3 h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
  }
  
  .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  
  .feature {
    max-width: 360px;
    text-align: center;
  }
  
  .feature img {
    width: 200px;
    height: 200px;
  }
  
  footer {
    color: black;
    text-align: center;
    padding: 20px 40px;
  }
  
  footer p {
    font-size: 14px;
  }
  