body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom, #f7fbf6, #d2f2db);
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    box-sizing: border-box;
  }
  
  .container {
    text-align: center;
    max-width: 600px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
  }
  
  h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #388E3C;
    margin-bottom: 1.5rem;
  }
  
  h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #4CAF50;
  }
  
  p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #555;
  }
  
  ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
    margin-bottom: 2rem;
  }
  
  ul li {
    font-size: 1.2rem;
    padding-left: 1.5rem;
    position: relative;
  }
  
  ul li:before {
    content: '✔';
    color: #4CAF50;
    position: absolute;
    left: 0;
  }
  
  .button {
    display: block;
    width: 100%;
    padding: 14px;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: white;
    background-color: #4CAF50;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
  }
  
  .button:hover {
    background-color: #388E3C;
    transform: translateY(-2px);
  }
  
  .button.secondary {
    background-color: #f0fdf4;
    color: #388E3C;
    border: 2px solid #c9efd2;
  }
  
  .button.secondary:hover {
    background-color: #e1f7d5;
  }
  
  .mission {
    font-style: italic;
    font-size: 1.2rem;
    margin: 0;
    color: #388E3C;
  }
  
  .highlight {
    background-color: #f0fdf4;
    border-left: 4px solid #4CAF50;
    padding: 1rem;
    margin: 1rem 0 2rem;
    border-radius: 8px;
  }
  
  .quote {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #388E3C;
    text-align: center;
    padding: 1rem;
    background-color: #e1f7d5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .footer {
    margin-top: 2.5rem;
    font-size: 0.95rem;
    color: #666;
    text-align: center;
  }
  
  .footer a {
    color: #4CAF50;
    margin: 0 0.25rem;
    text-decoration: none;
  }
  
  .footer a:hover {
    color: #2e7d32;
  }
  
  .social-icons {
    margin-top: 0.5rem;
  }
  
  .social-icons a {
    color: #388E3C;
    margin: 0 0.5rem;
    font-size: 1.4rem;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #1b5e20;
  }
  
  img {
    max-width: 100px;
    margin-bottom: 1.5rem;
  }
  
  @media (max-width: 768px) {
    .container {
      padding: 2rem;
    }
  
    h1 {
      font-size: 2.4rem;
    }
  
    h2 {
      font-size: 1.8rem;
    }
  
    p {
      font-size: 1.1rem;
    }
  
    .button {
      padding: 12px;
      font-size: 1rem;
    }
  
    .quote {
      font-size: 1.3rem;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 1.5rem;
    }
  
    h1 {
      font-size: 2rem;
    }
  
    h2 {
      font-size: 1.6rem;
    }
  
    .button {
      padding: 10px;
      font-size: 0.9rem;
    }
  }
  