<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General Reset */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  h1, h2, h3 {
    margin: 0;
    color: #333;
  }
  
  /* Header Section */
  .contact-us .header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #00ced1, #ffce00);
    color: #fff;
  }
  
  .contact-us .header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .contact-us .header p {
    font-size: 1.2rem;
    font-weight: lighter;
  }
  
  /* Info Section */
  .info-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background-color: #00ced1;
  }
  
  .info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
  }
  
  /* Floating Animation */
  @keyframes float {
    0%, 100% {
      transform: translateY(0); /* Initial and final position */
    }
    50% {
      transform: translateY(-10px); /* Slight upward movement */
    }
  }
  
  /* Add floating effect to icons */
  .info-card i {
    font-size: 2.5rem;
    color: #ffce00;
    animation: float 3s ease-in-out infinite; /* Apply animation */
  }
  
  .info-card h3 {
    font-size: 1.5rem;
  }
  
  .info-card p {
    margin: 5px 0 0;
    font-size: 1rem;
    color: #555;
  }
  
  /* Message Section */
  .message-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #00ced1, #ffce00);
    color: #fff;
  }
  
  .message-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }
  
  .illustration img {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  
  .contact-form {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    width: 400px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background: #f1f1f1;
  }
  
  .contact-form textarea {
    resize: none;
    height: 100px;
  }
  
  .contact-form button {
    width: 100%;
    background: #ffce00;
    color: #333;
    font-size: 1.2rem;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-form button:hover {
    background: #ffd633;
  }
  
  /* Footer Section */
  .footer {
    background-color: #00ced1;
    color: #fff;
    padding: 40px 20px;
    font-size: 1rem;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .footer-section {
    flex: 1;
  }
  
  .footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .footer-section p,
  .footer-section ul li {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: #fff;
    transition: color 0.3s;
  }
  
  .footer-section ul li a:hover {
    color: #ffce00;
  }
  
  .social-icons a {
    margin-right: 10px;
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #ffce00;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
  }
  </pre></body></html>