/* Reset and base styles */
a{
   text-decoration: none;
   color:white;
 }
/* ========== RESPONSIVE CSS ========== */

/* Tablets and below */
@media (max-width: 1024px) {
  .content h1 {
    font-size: 3rem;
  }

  .content h4 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1.2rem;
  }

  .content button {
    font-size: 1.2rem;
  }

  .logo img {
    width: 120px;
  }

  .contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    left: 20px;
    bottom: 20px;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .hero {
    padding: 30px 20px;
  }

  .logo img {
    position: relative;
    top: 0;
    left: 0;
    width: 100px;
    margin-bottom: 20px;
  }

  .content {
    position: static;
    transform: none;
    padding-top: 20px;
  }

  .content h4 {
    font-size: 1.4rem;
    letter-spacing: 4px;
  }

  .content h1 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1rem;
  }

  .content button {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .contact-info {
    position: static;
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-top: 40px;
    gap: 15px;
  }

  .contact-info p {
    font-size: 1rem;
  }
}