body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1e1e1e;
  }
  
  header {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
  }
  
  header a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1e1e1e;
  }
  
  header img {
    height: 40px;
  }
  
  .hero {
    background-color: #2f5f5d;
    color: white;
    text-align: center;
    padding: 8rem 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .feature-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background-color: #ffffff;
  }
  
  .feature-text {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
  }
  
  .feature-text h2 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: #1e1e1e;
  }
  
  .feature-text p {
    font-size: 1rem;
    color: #555;
  }
  
  .feature-image {
    flex: 1;
    min-width: 300px;
    padding: 1rem;
  }
  
  .feature-image img {
    width: 100%;
    border-radius: 10px;
  }
  
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 2rem;
    background-color: #f7fdfc;
  }
  
  .card {
    background: #ffffff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  
  .card h3 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #116466;
  }
  
  .card p {
    font-size: 0.95rem;
    color: #333;
  }
  
  footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #e6f2ef;
    font-size: 0.9rem;
  }
  .founder-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background-color: #ffffff;
    gap: 2rem;
  }
  
  .founder-photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #2f5f5d;
  }
  
  .founder-bio {
    max-width: 600px;
  }
  
  .founder-bio h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1e1e1e;
  }
  
  .founder-bio p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
  }
  
  footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #e6f2ef;
    font-size: 0.9rem;
  }
    