<style>
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background-color: #ffffff;
      color: #0f2564;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
      overflow: hidden;
    }

    #container {
      animation: fadeIn 1.5s ease;
      max-width: 900px;
      width: 100%;
    }

    #logo {
      width: 350px;
      max-width: 100%;
      margin: 0 auto 30px;
      animation: slideDown 1s ease;
    }

    #tagline {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 25px;
      animation: fadeIn 2s ease;
    }

    #intro {
      font-size: 1.3rem;
      line-height: 1.8;
      margin-bottom: 30px;
      animation: fadeIn 2.5s ease;
    }

    #contact a {
      font-size: 1.0rem;
      text-decoration: none;
      color: #0f2564;
      transition: all 0.3s ease;
      font-weight: 600;
    }

    #contact a:hover {
      color: #007bff;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      #logo {
        width: 300px;
        margin-bottom: 25px;
      }

      #tagline {
        font-size: 1.5rem;
      }

      #intro {
        font-size: 1.1rem;
        padding: 0 10px;
      }

      #contact a {
        font-size: 1.1rem;
      }
    }

    @media (max-width: 480px) {
      #logo {
        width: 300px;
      }

      #tagline {
        font-size: 1.3rem;
      }

      #intro {
        font-size: 1rem;
      }

      #contact a {
        font-size: 1rem;
      }
    }
  </style>