
    :root {
      --primary: #22b3a6; /* teal green */
      --secondary: #1fa195;
      --text-dark: #2b2b2b;
      --white: #ffffff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--primary);
      color: var(--white);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .page-wrapper {
      width: 100%;
      max-width: 1100px;
      background: var(--primary);
      padding: 60px 20px;
    }

    .content-box {
      background: var(--white);
      color: var(--text-dark);
      text-align: center;
      padding: 60px 40px;
    }

    .logo {
      margin-bottom: 25px;
    }

    .logo img {
      max-width: 260px;
      width: 100%;
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      margin-bottom: 15px;
    }

    .subtitle {
      font-size: 16px;
      max-width: 750px;
      margin: 0 auto 30px;
      line-height: 1.7;
    }

    .highlight {
      font-weight: 500;
      margin-bottom: 20px;
    }

    .services {
      font-size: 15px;
      margin-bottom: 25px;
    }

    .contact {
      font-size: 14px;
      line-height: 1.8;
    }

    .contact a {
      color: var(--secondary);
      text-decoration: none;
      font-weight: 500;
    }

    .contact a:hover {
      text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 768px) {
      h1 {
        font-size: 28px;
      }

      .content-box {
        padding: 40px 25px;
      }

      .subtitle {
        font-size: 15px;
      }
    }

    @media (max-width: 480px) {
      h1 {
        font-size: 24px;
      }

      .services {
        font-size: 14px;
      }
    }