  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  html {
      font-size: 62.5%;
      height: 100%;
  }

  body {
      font-family: "Lato", sans-serif;
      font-weight: 400;
      line-height: 1.7;
      color: #333;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      background-color: #ffffff;
  }

  .main-container {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 2rem;
  }

  .logo-container {
      text-align: center;
      margin-bottom: 3rem;
      opacity: 0;
      transform: translateY(-20px);
      animation: fadeInUp 0.8s ease-out 0.2s forwards;
  }

  .logo-container img {
      max-width: 100%;
      height: auto;
      max-height: 180px;
      filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
      transition: transform 0.3s ease;
  }

  .logo-container img:hover {
      transform: scale(1.02);
  }

  .under-construction {
      font-size: 3.2rem;
      font-weight: 700;
      text-transform: uppercase;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 3rem;
      letter-spacing: 1.5px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease-out 0.5s forwards;
      position: relative;
  }

  .under-construction::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, #3498db, #2980b9);
      border-radius: 2px;
  }

  .contact-info {
      background: #f8f9fa;
      border-radius: 15px;
      padding: 3rem;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      border: 1px solid #e9ecef;
      max-width: 600px;
      width: 100%;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.8s ease-out 0.8s forwards;
  }

  .contact-info ul {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .contact-info li {
      margin-bottom: 2.5rem;
      display: flex;
      align-items: center;
      transition: transform 0.3s ease, background-color 0.3s ease;
      padding: 1rem;
      border-radius: 10px;
  }

  .contact-info li:hover {
      transform: translateX(8px);
      background-color: rgba(52, 152, 219, 0.05);
  }

  .contact-info li:last-child {
      margin-bottom: 0;
  }

  .contact-info .icon {
      background: linear-gradient(135deg, #3498db, #2980b9);
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 1.8rem;
      font-size: 2rem;
      flex-shrink: 0;
      box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .contact-info li:hover .icon {
      transform: scale(1.1);
      box-shadow: 0 6px 18px rgba(52, 152, 219, 0.4);
  }

  .contact-info h3 {
      font-size: 1.7rem;
      font-weight: 600;
      color: #2c3e50;
      margin: 0;
      word-break: break-word;
      line-height: 1.4;
  }

  .contact-info a {
      color: #3498db;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .contact-info a:hover {
      color: #2980b9;
      text-decoration: underline;
  }

  .footer {
      background: #34495e;
      color: #ecf0f1;
      padding: 2rem 0;
      text-align: center;
      font-size: 1.3rem;
      border-top: 3px solid #3498db;
      margin-top: auto;
  }

  .footer a {
      color: #ecf0f1;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .footer a:hover {
      color: #3498db;
      text-decoration: none;
  }

  .footer .separator {
      margin: 0 0.8rem;
      opacity: 0.6;
  }

  .footer strong {
      color: #ffffff;
  }

  @keyframes fadeInUp {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .main-container {
          padding: 1.5rem;
      }

      .under-construction {
          font-size: 2.4rem;
          margin-bottom: 2.5rem;
          letter-spacing: 1px;
      }

      .contact-info {
          padding: 2.5rem 2rem;
          margin: 0 1rem;
      }

      .contact-info li {
          margin-bottom: 2rem;
          padding: 0.8rem;
      }

      .contact-info .icon {
          margin-right: 1.5rem;
      }

      .contact-info h3 {
          font-size: 1.5rem;
      }

      .footer {
          font-size: 1.2rem;
          padding: 1.8rem 1rem;
      }

      .footer .separator {
          display: block;
          margin: 0.3rem 0;
      }
  }

  @media (max-width: 480px) {
      .under-construction {
          font-size: 2rem;
          letter-spacing: 0.5px;
      }

      .contact-info {
          padding: 2rem 1.5rem;
      }

      .contact-info li {
          flex-direction: column;
          text-align: center;
          margin-bottom: 2.5rem;
          padding: 1.5rem 1rem;
      }

      .contact-info .icon {
          margin-right: 0;
          margin-bottom: 1.2rem;
      }

      .contact-info h3 {
          font-size: 1.4rem;
      }

      .footer {
          font-size: 1.1rem;
      }
  }

  @media (min-width: 1200px) {
      .under-construction {
          font-size: 4rem;
      }

      .contact-info {
          padding: 3.5rem;
      }

      .contact-info h3 {
          font-size: 1.9rem;
      }

      .footer {
          font-size: 1.4rem;
      }
  }