 body {
      font-family: 'Sora', sans-serif;
      margin: 0;
      padding: 0;
      min-height: 100vh;
      background: url('assets/Rectangle.jpg') no-repeat center center fixed;
      background-size: cover;
      color: #4A2F50;
    }
    .container {
      max-width: 900px;
      margin: 0 auto;
      padding: 2rem;
      border-radius: 1rem;
      margin-top: 3rem;
    }
    .logo {
      width: 450px;
      display: block;
      margin: 0 auto 1rem auto;
    }
    .header-text {
      text-align: center;
      font-size: 2rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
    }
    .buttons {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
    .btn {
      font-family: 'Sora', sans-serif;
      text-align: center;
      font-weight: 600;
      font-size: 2rem;
      padding: 0.8rem 2rem;
      border: none;
      border-radius: 0.5rem;
      cursor: pointer;
      transition: background 0.2s, color 0.2s;
      color: #fff;
      margin-bottom: 1rem;
    }
    .btn-primary {
      background: #C98F61;
    }
    .btn-secondary {
      background: #4A2F50;
    }
    .btn:hover {
      filter: brightness(0.92);
    }
    a { 
    color: inherit; 
    text-decoration: none; 
    }
    .main-content {
      display: flex;
      align-items: center;
      gap: 2rem;
      margin-top: 2rem;
      flex-wrap: wrap;
    }
    .main-image {
      flex: 1 1 260px;
      max-width: 320px;
      border-radius: 1rem;
      box-shadow: 0 4px 16px rgba(76,47,80,0.18);
      width: 100%;
    }
    .main-text {
      flex: 2 1 340px;
      font-size: 1.5rem;
      line-height: 1.7;
    }
    @media (max-width: 700px) {
      .main-content {
        flex-direction: column;
        gap: 1.2rem;
      }
      .main-image, .main-text {
        max-width: 100%;
      }
.buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 80%; 
    font-size: 1.5rem; 
  }

    }
