* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: white;
    overflow-x: hidden;
  }
  
  .hero-container {
    min-height: 100vh;
    background-image: url("./hero-image.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(0, 128, 128, 0.7) 0%,
      rgba(0, 128, 128, 0.5) 50%,
      rgba(0, 128, 128, 0.3) 100%
    );
    z-index: 1;
  }
  
  .content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
  }
  
  .content-wrapper{
    max-width: 75vw; /* Updated max-width from 1400px to 1440px for desktop */
    margin: auto auto;
    padding: 80px 0;
  }


  .header {
    padding: 1rem 0 2rem;
  }
  
  .logo-placeholder {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .logo-text {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
  }
  
  .logo-subtext {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    padding-left: 0.25rem;
  }
  
  .logo {
    height: 60px;
    width: auto;
  }
  
  .main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 800px;
  }
  
  .hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
  }
  
  .hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    font-weight: 400;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  }
  
  .contact-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    object-fit: contain;
    margin-top: 2px;
  }
  
  .contact-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  
  .contact-link:hover {
    opacity: 0.8;
  }
  
  .contact-text {
    line-height: 1.5;
  }
  
  .icon-placeholder {
    font-size: 1.25rem;
    min-width: 24px;
  }
  
  .address {
    display: flex;
    flex-direction: column;
  }
  
  .login-section {
    margin-bottom: 3rem;
  }
  
  .login-text {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    margin-bottom: 1rem;
  }
  
  .button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
  }
  
  .btn-primary {
    background-color: #c9a961;
    color: white;
    border-color: #ffffff;
  }
  
  .btn-primary:hover {
    background-color: #b89850;
    border-color: #b89850;
    transform: translateY(-2px);
  }
  
  .footer-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-top: auto;
    padding-top: 2rem;
  }
  
  /* Responsive Design */

  @media (max-width: 1440px) {
    .content-wrapper{
        max-width: 90vw; /* Updated max-width from 1400px to 1440px for desktop */
      }
  }

  @media (max-width: 768px) {
    .content {
      padding: 1.5rem;
    }

    .content-wrapper{
        padding: 40px 0;
      }
  
    .hero-title {
      margin-bottom: 1.5rem;
    }
  
    .hero-description {
      margin-bottom: 2rem;
    }
  
    .logo {
      height: 50px;
    }
  
    .contact-info {
      margin-bottom: 2rem;
    }
  
    .login-section {
      margin-bottom: 2rem;
    }
  
    .button-group {
      flex-direction: column;
    }
  
    .btn {
      text-align: center;
      width: 100%;
      max-width: 300px;
    }
  }
  
  @media (max-width: 480px) {
    .logo-text {
      font-size: 2.5rem;
    }

    .content-wrapper{
        padding: 40px 0;
      }
  
    .contact-item {
      font-size: 0.9rem;
    }
  
    .logo {
      height: 40px;
    }
  
    .icon-placeholder {
      font-size: 1rem;
    }
  
    .contact-icon {
      width: 18px;
      height: 18px;
      min-width: 18px;
    }
  }
  