/* Fix for inline styles - moved to external CSS for better performance */

/* Logo styling */
.header .logo img {
  width: 100%;
}

/* About section image */
.about .img-fluid {
  border-radius: 10px;
}

/* Section headings */
.section-heading {
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}

.section-heading-partners {
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Section dividers */
.section-divider {
  width: 50px;
  height: 3px;
  background-color: #00a0e0;
  border: none;
  margin: 0 auto 30px;
  opacity: 1;
}

.section-divider-partners {
  width: 50px;
  height: 3px;
  background-color: #00a0e0;
  border: none;
  margin: 0 auto 50px;
  opacity: 1;
}

/* Partners button */
.partners-btn {
  border-radius: 50px;
  font-weight: 400;
  color: #009fe0;
  border-color: #009fe0;
  transition: all 0.3s ease;
}

/* Contact section */
.contact-section {
  background: linear-gradient(to bottom, #f5f9ff 0%, #ffffff 100%);
}

.contact-description {
  text-align: center;
  margin-bottom: 50px;
}

/* Footer contact links */
.footer-contact-link {
  color: #64748b;
  text-decoration: none;
}

.footer-contact-link:hover {
  color: var(--accent-color);
  text-decoration: none;
}

/* Privacy popup */
.privacy-popup-hidden {
  display: none;
}

/* Simple Google Maps iframe styling */
.contact-map iframe {
  border: 0;
  width: 100%;
  height: 350px;
  border-radius: 8px;
}

/* Responsive iframe */
@media (max-width: 991px) {
  .contact-map iframe {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .contact-map iframe {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .contact-map iframe {
    height: 250px;
  }
}