@font-face {
    font-family: 'Gotham';
    src: url('/Gotham/Gotham-Light.otf') format('woff2'),
         url('/Gotham/Gotham-Light.otf') format('woff');
    font-weight: 300;
  }
  
  @font-face {
    font-family: 'Gotham';
    src: url('/Gotham/Gotham-Bold.otf') format('woff2'),
         url('/Gotham/Gotham-Bold.otf') format('woff');
    font-weight: 400;
  }
  
  @font-face {
    font-family: 'Gotham';
    src: url('/Gotham/Gotham-Black.otf') format('woff2'),
         url('/Gotham/Gotham-Black.otf') format('woff');
    font-weight: 700;
  }
  
  /* Base Reset */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Gotham', sans-serif;
  }
  
  body {
    background-color: #fdfdfd;
    color: #111111;
    line-height: 1.6;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  p {
    font-weight: 300;
  }
  
  /* Navbar */
  #navbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to right, #ffffff, #27bcac);
    color: white;
    padding: 1rem 2rem;
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  #navbar.sticky {
    display: flex;
  }
  
  #navbar .logo {
    font-weight: 400;
    font-size: 1.25rem;
  }
  
  #navbar ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  #navbar li a {
    color: white;
    font-weight: 400;
  }
  
  /* Hero */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 3rem 2rem;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #fdfdfd;
  }
  
  .hero-text {
    flex: 1;
    max-width: 600px;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .hero-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
  
  .cta-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .cta {
    padding: 0.75rem 1.5rem;
    font-weight: 400;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-size: 1rem;
    text-align: center;
    display: inline-block;
    min-width: 160px;
  }
  
  .cta.primary {
    background-color: #27bcac;
    color: white;
    border: none;
  }
  
  .cta.outline {
    background-color: transparent;
    border: 2px solid #27bcac;
    color: #27bcac;
  }
  
  .cta:hover {
    opacity: 0.9;
  }
  
  .hero-image {
    flex: 1;
    text-align: right;
    margin-top: 2rem;
  }
  
  .hero-image img {
    width: 100%;
    max-width: 400px;
    margin-right: 0;
  }
  
  /* About */
  .about {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .about h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 2rem;
  }
  
  .feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .feature-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    max-width: 300px;
    text-align: center;
  }
  
  .feature-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .feature-card h3 {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
  }
  
  .feature-card .cta {
    margin-top: 1rem;
    display: inline-block;
    font-size: 0.9rem;
  }
  
  /* Contact */
  .contact {
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .contact h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .contact p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .contact-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .contact-btn {
    background-color: #27bcac;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 400;
    border: none;
    text-align: center;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    min-width: 160px;
  }
  
  .contact-btn:hover {
    opacity: 0.9;
  }
  
  /* Footer */
  footer {
    background-color: #1c1c1c;
    color: #f0f0f0;
    text-align: center;
    padding: 1.5rem 2rem;
    font-size: 0.875rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-image {
      text-align: center;
      margin-top: 2rem;
    }
  
    .cta-container {
      flex-direction: column;
      align-items: center;
    }
  
    #navbar ul {
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
  
    .contact-links {
      flex-direction: column;
      align-items: center;
    }
  }
  