<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Shinray Health | Empowering Wellness, Enhancing Performance</title>
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
  <style>
    :root {
      --primary-dark: #0b3c5d;
      --primary: #0f6f8c;
      --primary-light: #19a7b8;
      --bg-light: #f7fbfc;
      --text-dark: #1f2933;
      --text-muted: #6b7280;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }

    body {
      background: var(--bg-light);
      color: var(--text-dark);
      line-height: 1.6;
    }

    header {
      background: #ffffff;
      padding: 1.2rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    }

    header img {
      height: 52px;
    }

    nav a {
      margin-left: 2rem;
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 500;
    }

    nav a:hover {
      color: var(--primary);
    }

    .hero {
      padding: 5rem 2rem;
      text-align: center;
      background: linear-gradient(135deg, #e6f7f9, #ffffff);
    }

    .hero h1 {
      font-size: 3rem;
      color: var(--primary-dark);
      margin-bottom: 1rem;
    }

    .hero p {
      max-width: 720px;
      margin: 0 auto 2rem;
      font-size: 1.1rem;
      color: var(--text-muted);
    }

    .hero button {
      padding: 0.9rem 2.2rem;
      font-size: 1rem;
      border: none;
      border-radius: 999px;
      background: var(--primary);
      color: white;
      cursor: pointer;
    }

    .hero button:hover {
      background: var(--primary-light);
    }

    .section {
      padding: 4rem 2rem;
      max-width: 1100px;
      margin: auto;
    }

    .section h2 {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 2.5rem;
      color: var(--primary-dark);
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .card {
      background: #ffffff;
      padding: 2rem;
      border-radius: 1.5rem;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      text-align: center;
    }

    .card h3 {
      margin-bottom: 1rem;
      color: var(--primary);
    }

    .card p {
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .about img {
      width: 100%;
      border-radius: 2rem;
    }

    .about p {
      color: var(--text-muted);
    }

    footer {
      background: var(--primary-dark);
      color: #ffffff;
      padding: 2rem;
      text-align: center;
      margin-top: 4rem;
    }

    footer p {
      font-size: 0.9rem;
      opacity: 0.85;
    }

    @media (max-width: 768px) {
      .about {
        grid-template-columns: 1fr;
      }
      header {
        flex-direction: column;
      }
      nav {
        margin-top: 1rem;
      }
    }
  </style>
</head>
<body>

  <header>
    <img src="logo.png" alt="Shinray Health Logo" />
    <nav>
      <a href="#">Home</a>
      <a href="#">Services</a>
      <a href="#">About</a>
      <a href="#">Contact</a>
    </nav>
  </header>

  <section class="hero">
    <h1>Empowering Wellness,<br/>Enhancing Performance</h1>
    <p>
      Shinray Health integrates modern healthcare, holistic wellness, and performance science to help individuals and organizations thrive—physically, mentally, and professionally.
    </p>
    <button>Get Started</button>
  </section>

  <section class="section">
    <h2>Our Core Offerings</h2>
    <div class="features">
      <div class="card">
        <h3>Holistic Wellness</h3>
        <p>Mind–body programs combining yoga, mindfulness, and lifestyle optimization.</p>
      </div>
      <div class="card">
        <h3>Performance Health</h3>
        <p>Evidence‑based strategies to boost energy, focus, and sustainable performance.</p>
      </div>
      <div class="card">
        <h3>Preventive Care</h3>
        <p>Proactive health solutions designed to prevent illness before it starts.</p>
      </div>
    </div>
  </section>

  <section class="section about">
    <img src="https://images.unsplash.com/photo-1544367567-0f2fcb009e0b" alt="Wellness session" />
    <div>
      <h2>About Shinray Health</h2>
      <p>
        Inspired by balance, clarity, and growth, Shinray Health stands at the intersection of traditional wisdom and modern medical science. Our mission is to guide individuals and organizations toward optimal health, resilience, and peak performance.
      </p>
    </div>
  </section>

  <footer>
    <p>© 2025 Shinray Health. All rights reserved.</p>
  </footer>

</body>
</html>
