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

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  padding-top: 80px; /* Espacio para el header fijo */
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 0;
}

.navbar {
  background-color: transparent !important;
}

.logoPH {
  max-width: 100%;
  width: 60px;
  height: auto;
}

.navbar-nav .nav-link {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #3b8de6;
}

.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icons img {
  width: 24px;
  height: auto;
}

/* Privacy Policy Styles */
.privacy-policy {
  
  margin: 0 auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.privacy-policy h1 {
  font-size: 2.8rem;
  color: #003366;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.privacy-policy h2 {
  font-size: 1.9rem;
  color: #003366;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.privacy-policy p {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

.privacy-policy ul {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 1.2rem;
}

.privacy-policy ul li {
  font-size: 1.15rem;
  color: #333;
  margin-bottom: 0.8rem;
}

.privacy-policy a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-policy a:hover {
  color: #003366;
  text-decoration: underline;
}

/* Footer Styles */
footer {
  background-color: #ffffff;
  color: #003366;
  padding: 15px 20px;
}

.footer-col {
  margin-bottom: 20px;
  text-align: center;
}

.footer-logo {
  max-width: 75%;
  width: 100%;
  height: auto;
}

.footer-col.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-col.contact-info .contact-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.footer-col.contact-info .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  width: 100%;
  justify-content: center;
}

.contact-info a {
  text-decoration: none;
  color: inherit;
}

.footer-col.contact-info .contact-item .icon img {
  width: 40px;
  height: auto;
  object-fit: contain;
}

.footer-col.contact-info .contact-item .text {
  font-size: 16px;
  line-height: 1.4;
  color: #003366;
}

.iconsFooter {
  display: inline-flex;
  align-items: center;
}

.iconsFooter img {
  width: 40px;
  height: auto;
  margin: 0 10px;
}

.footer-col.footer-menu {
  text-align: center;
}

.footer-col.footer-menu h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
  color: #003366;
}

.footer-col.footer-menu ul {
  padding: 0;
  list-style: none;
}

.footer-col.footer-menu ul li {
  margin: 20px 0;
}

.footer-col.footer-menu ul li a {
  text-decoration: none;
  font-size: 1.1rem;
  color: #003366;
  transition: color 0.3s ease;
}

.footer-col.footer-menu ul li a:hover {
  color: #0056b3;
}

.footer-copy {
  text-align: center;
  padding: 20px 0;
}



/* Media Queries para responsividad */
@media (min-width: 768px) {
  .footer-col.contact-info .contact-item {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 60px;
  }
  .footer-col.contact-info .contact-list {
    align-items: center;
  }
  .footer-col.contact-info .contact-item {
    margin: 10px 0;
    justify-content: center;
  }
  .privacy-policy {
    padding: 20px;
  }
  .privacy-policy h1 {
    font-size: 2.2rem;
  }
  .privacy-policy h2 {
    font-size: 1.6rem;
  }
}