* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
}

/* Barra de navegación fija */
.navbar {
    position: fixed; 
    top: 0; 
    left: 0;
    right: 0;
    background-color: #333; 
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000; 
}

.navbar-left .logo {
    height: 40px; 
}

.navbar-right a {
    color: white; 
    text-decoration: none; 
    margin-left: 20px;
    font-size: 1rem;
    transition: color 0.3s; 
}

.navbar-right a:hover {
    color: #FF8C00; 
}
/* FAQ Section */
.faq {
    text-align: justify;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item {
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.faq-item a {
    color: #FF8C00;
    text-decoration: none;
    font-weight: bold;
}

.faq-item a:hover {
    text-decoration: underline;
}
.content-right p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

.social-icons a {
    margin: 0 10px;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

/* ----------- Media Queries ----------- */

/* Tablets (768px o menor) */
@media (max-width: 768px) {
  .navbar {
      flex-direction: column;
      padding: 10px;
  }

  .navbar-left {
      margin-bottom: 10px;
  }

  .navbar-right a {
      font-size: 0.9rem;
      margin: 5px 0;
  }

  .hero {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 10px;
  }

  .content-left {
      max-width: 100%;
  }

  .content-left h1 {
      font-size: 2rem;
  }

  .service-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .service-item h3 {
      font-size: 1.5rem;
  }

  .service-item p {
      font-size: 0.9rem;
  }
}
/* Responsive Design */
@media (max-width: 600px) {
    .faq-item h3 {
        font-size: 1rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }
}
/* Móviles (480px o menor) */
@media (max-width: 480px) {
  .navbar-right a {
      font-size: 0.8rem;
      margin: 5px 0;
  }

  .hero {
      flex-direction: column;
      padding: 10px;
  }

  .content-left h1 {
      font-size: 1.8rem;
  }

  .content-left p {
      font-size: 1rem;
  }

  .content-left button {
      padding: 8px 16px;
      font-size: 0.9rem;
  }

  .service-grid {
      grid-template-columns: 1fr;
  }

  .service-item {
      padding: 20px;
  }

  .service-item h3 {
      font-size: 1.2rem;
  }

  .service-item p {
      font-size: 0.8rem;
  }

  .social-icons img {
      width: 24px;
      height: 24px;
  }
}