:root {
    --green: #00843D;
    --blue: #0066B3;
    --gray: #4A4A4A;
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    line-height: 1.6;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Hero Section */
  .hero {
    min-height: 100vh;
    position: relative;
    color: white;
    overflow: hidden;
  }
  
  .hero-background {
    position: absolute;
    inset: 0;
    background: 
      linear-gradient( rgba(59, 60, 60, 0.9), rgba(33, 32, 32, 0.9), rgba(12, 12, 12, 0.9)),
      url('ikigai.png');
    background-size:140%;
    background-position: center;
    z-index: -1;
    animation: backgroundZoom 20s infinite alternate;
  }
  
  .hero-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
  }
  
  .logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    padding: 8px;
    margin-bottom: 32px;
  }
  
  .hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    background: linear-gradient(120deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .subtitle {
    font-size: 1.5rem;
    margin-bottom: 32px;
    opacity: 0.9;
  }
  
  .features {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 800px;
  }
  
  .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
  }
  
  .feature i {
    font-size: 1.25rem;
  }
  .feature{
    transition: transform 0.3s ease;
  }
    .feature:hover{
        transform: scale(1.05);
    }
  .cta-button {
    background: white;
    color: var(--green);
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  /* Info Section */
  .info-section {
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .section-title {
    font-size: 2.5rem;
    text-align: center;
    color: var(--blue);
    margin-bottom: 64px;
  }
  
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    padding: 0 20px;
  }
  
  .card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: var(--transition);
  }
  
  .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  
  .icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  
  .icon-circle i {
    color: white;
    font-size: 1.5rem;
  }
  
  .green { background: var(--green); }
  .blue { background: var(--blue); }
  .gray { background: var(--gray); }
  
  .card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--gray);
  }
  
  .card p {
    color: #666;
  }
  
  /* Form Section */
  .form-section {
    padding: 80px 0;
    text-align: center;
  }
  
  .green-text {
    color: var(--green);
  }
  
  .section-description {
    color: #666;
    margin-bottom: 32px;
    font-size: 1.125rem;
  }
  
  .form-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
  }
  
  .form-button:hover {
    background: #0055a4;
    transform: translateY(-2px);
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from { 
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-10px);
    }
    60% {
      transform: translateY(-5px);
    }
  }
  
  @keyframes backgroundZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
  }
  
  .animate-fade-in {
    animation: fadeIn 1s ease-out;
  }
  
  .animate-slide-up {
    animation: slideUp 1s ease-out;
  }
  
  .animate-slide-up-delay {
    animation: slideUp 1s ease-out 0.3s backwards;
  }
  
  .animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.6s backwards;
  }
  
  .animate-bounce {
    animation: bounce 2s infinite;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .subtitle {
      font-size: 1.25rem;
    }
  
    .features {
      flex-direction: column;
      gap: 16px;
    }
  
    .section-title {
      font-size: 2rem;
    }
  }