* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Header */
header {
  background: linear-gradient(135deg, #1a78b5 0%, #1a78b5 100%);
  color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  padding: 5px;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700;
}

/* Hero Section */
.hero {
  background: linear-gradient(
      135deg,
      rgba(26, 120, 181, 0.8),
      rgba(249, 199, 6, 0.8)
    ),
    url("img/cover.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100vw;
  min-height: 100vh;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  max-width: none !important;
  margin: 0 !important;
  padding: 2rem 1rem !important;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
  animation: fadeInUp 1s ease;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.quote {
  font-size: 1.6rem;
  font-style: italic;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  background: #f9c706;
  color: #333;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
  background: #ffe041;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #333;
}

/* Sections */
section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #2e86ab;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #1a78b5, #f9c706);
  margin: 1rem auto;
  border-radius: 2px;
}

/* Mission Section */
.mission {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin: 0;
  max-width: 100%;
  padding: 5rem 2rem;
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-text {
  font-size: 1.2rem;
  line-height: 1.8;
}

.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2e86ab;
  display: block;
}

.stat-label {
  color: #666;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Services Section */
.services {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: linear-gradient(135deg, #1a78b5, 75%, #f9c706);
  color: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.service-card:hover::before {
  top: -25%;
  right: -25%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  z-index: 1;
  position: relative;
}

.service-card p {
  z-index: 1;
  position: relative;
}

/* Gallery Section */
.gallery {
  background: #f8f9fa;
  margin: 0;
  max-width: 100%;
  padding: 5rem 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  aspect-ratio: 4/3;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

/* Location Section */
.location {
  background: white;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.location-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-info {
  font-size: 1.1rem;
  line-height: 1.8;
  flex: 1;
}

.location-details-map {
  background: #f8f9fa;
  border-radius: 15px;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: stretch;
}

.location-details-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  border-radius: 15px;
}

.contact-info-section {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid #2e86ab;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-section h3 {
  color: #2e86ab;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.contact-icon {
  color: #a23b72;
  width: 20px;
}

/* Contact Form Section */
.contact {
  background: #f8f9fa;
  margin: 0;
  max-width: 100%;
  padding: 5rem 2rem;
}

.contact-content {
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-section {
  font-size: 1.1rem;
  line-height: 1.8;
}

.contact-form-section h3 {
  color: #2e86ab;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-form-section p {
  margin-bottom: 2rem;
  color: #666;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2e86ab;
  background: white;
  box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #1a78b5 75%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(46, 134, 171, 0.3);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-loading::after {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.form-message {
  margin-top: 1rem;
  padding: 15px;
  border-radius: 10px;
  font-weight: 500;
  text-align: center;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.contact-info-section {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  border-left: 5px solid #2e86ab;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 60px;
}

.contact-info-section h3 {
  color: #2e86ab;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

/* Donation Section */
.donation {
  background: linear-gradient(135deg, #1a78b5 0%, #f4963e 100%);
  color: white;
  margin: 0;
  max-width: 100%;
  text-align: center;
  padding: 5rem 2rem;
}

.donation .section-title {
  color: white;
}

.donation-content {
  max-width: 800px;
  margin: 0 auto;
}

.donation p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.bank-details {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  border-radius: 20px;
  margin: 2rem 0;
}

.bank-details h4 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #f9c706;
}

.bank-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
}

.bank-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bank-label {
  font-weight: bold;
  color: #f9c706;
  display: block;
  margin-bottom: 0.2rem;
}

/* Footer */
.footer {
  background: #1a78b5;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f9c706, transparent);
}

.footer-main {
  background: #333333;
  padding: 60px 2rem 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #f9c706;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  color: #b8c5d1;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 14px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d1dce5;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 0;
}

.footer-links a:hover {
  color: #f9c706;
  padding-left: 10px;
}

.org-info {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding-right: 30px;
}

.org-logo {
  width: 80px;
  height: 80px;
  background: #f9c706;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #1a78b5;
  font-weight: bold;
  font-size: 24px;
}

.org-description {
  font-size: 16px;
  line-height: 1.6;
  color: #d1dce5;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #d1dce5;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-link-facebook {
  background: #fff;
}

.social-link:hover {
  background: #f9c706;
  color: #1a78b5;
  transform: translateY(-2px);
}

.footer-bottom {
  background: #333333;
  padding: 25px 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal {
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer-legal a {
  color: #8a9aa8;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #f9c706;
}

.copyright {
  color: #6c7b87;
  font-size: 13px;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #f9c706;
  border: none;
  border-radius: 50%;
  color: #1a78b5;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top:hover {
  background: #f4963e;
  transform: translateY(-2px);
}

.back-to-top.visible {
  display: flex;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-selector select {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 13px;
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

/* Responsive Design - IMPROVED */
@media (max-width: 1024px) {
  nav {
    padding: 0 1.5rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .hero {
    padding: 2rem 1.5rem !important;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .mission,
  .gallery,
  .contact,
  .donation {
    padding: 4rem 1.5rem;
  }

  .footer-main {
    padding: 50px 1.5rem 35px;
  }

  .footer-bottom {
    padding: 20px 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }

  .org-info {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    padding-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 1rem;
  }

  .nav-links {
    display: none;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  /* Hero Section Mobile */
  .hero {
    padding: 2rem 1rem !important;
    background-attachment: scroll;
    min-height: 90vh;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .quote {
    font-size: 1.3rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  /* All sections padding */
  section {
    padding: 3rem 1rem;
  }

  .mission,
  .gallery,
  .contact,
  .donation {
    padding: 3rem 1rem;
  }

  .mission-content,
  .location-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .location-details-map iframe {
    height: 300px;
    min-height: 300px;
  }

  .mission-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  /* Services Grid Mobile */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem;
  }

  /* Gallery Grid Mobile */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Contact Form Mobile */
  .contact-form {
    padding: 1.5rem;
  }

  .contact-info-section {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  /* Bank details mobile */
  .bank-info {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .bank-details {
    padding: 1.5rem;
  }

  /* CTA Buttons Mobile */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  /* Footer Mobile */
  .footer-main {
    padding: 40px 1rem 30px;
  }

  .footer-bottom {
    padding: 20px 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .org-info {
    grid-column: 1 / -1;
    text-align: center;
    padding-bottom: 25px;
  }

  .org-logo {
    margin: 0 auto 20px;
  }

  .social-links {
    justify-content: center;
  }

  .bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 15px;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  nav {
    padding: 0 0.8rem;
  }

  .logo h1 {
    font-size: 1.3rem;
  }

  .logo img {
    width: 35px;
    height: 35px;
  }

  /* Hero Extra Small */
  .hero {
    padding: 1.5rem 0.8rem !important;
  }

  .hero-content {
    padding: 0.8rem;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .quote {
    font-size: 1.1rem;
    padding: 0.8rem;
  }

  /* All sections extra small padding */
  section {
    padding: 2.5rem 0.8rem;
  }

  .mission,
  .gallery,
  .contact,
  .donation {
    padding: 2.5rem 0.8rem;
  }

  /* Mission Stats Extra Small */
  .mission-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1.2rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  /* Service Cards Extra Small */
  .service-card {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }

  .service-icon {
    font-size: 2.5rem;
  }

  /* Gallery Extra Small */
  .gallery-overlay {
    padding: 1rem;
  }

  /* Contact Form Extra Small */
  .contact-form {
    padding: 1.2rem;
  }

  .contact-info-section {
    padding: 1.2rem;
  }

  /* Bank Details Extra Small */
  .bank-details {
    padding: 1.2rem;
  }

  .bank-details h4 {
    font-size: 1.2rem;
  }

  /* Footer Extra Small */
  .footer-main {
    padding: 30px 0.8rem 25px;
  }

  .footer-bottom {
    padding: 20px 0.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .org-logo {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }

  .org-info {
    padding-bottom: 20px;
  }

  /* Back to top button */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  /* Section titles extra small */
  .section-title {
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
  }

  .section-title::after {
    width: 80px;
    height: 3px;
  }
}

/* Extra extra small devices (very small phones) */
@media (max-width: 320px) {
  .hero h2 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .quote {
    font-size: 1rem;
    padding: 0.6rem;
  }

  section {
    padding: 2rem 0.6rem;
  }

  .mission,
  .gallery,
  .contact,
  .donation {
    padding: 2rem 0.6rem;
  }

  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .service-card {
    padding: 1.2rem;
  }

  .contact-form,
  .contact-info-section,
  .bank-details {
    padding: 1rem;
  }

  .footer-main {
    padding: 25px 0.6rem 20px;
  }

  .footer-bottom {
    padding: 15px 0.6rem;
  }
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Ensure iframe responsiveness */
@media (max-width: 768px) {
  .location-details-map iframe {
    height: 300px;
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .location-details-map iframe {
    height: 250px;
    min-height: 250px;
  }
}
