/* Ítems de información en sección "Où me consulter" */
.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1rem;
}

.info-item i {
  font-size: 1.2rem;
  color: white;
}

.info-item a {
  color: white;
  text-decoration: underline;
}
/* Paleta de colores */
:root {
  --primary-blue: #1F3A5F;
  --secondary-blue: #2C6EB2;
}

/* Reset et base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
  padding-top: 0;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Contenedor exclusivo para la imagen principal */
.hero-container {
  width: 100%;
  padding: 0;
  margin: 0;
  margin-top: 0px; /* Ajuste compensando altura del header */
}

/* En-tête */
header {
  background-color: rgba(255, 255, 255, 0.9);
  color: #1F3A5F;
  padding: 0;
  border-bottom: 1px solid #e0e0e0;
  width: 100%;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
}

header h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 5px;
}

header p {
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
}

nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 10px;
}

nav ul li {
  margin: 0 10px;
}

nav ul li a {
  color: #1F3A5F;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Sections */
.section {
  padding: 60px 0;
}

.section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #1F3A5F;
}

.section ul {
  list-style: disc inside;
  padding-left: 0;
}

.section p,
.section li {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Formulaire */
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form input,
form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

form button {
  padding: 12px;
  background-color: #1F3A5F;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #547AA5;
}

/* Pied de page */
footer {
  background-color: #eaeaea;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
  margin-top: 40px;
}

.footer-section {
  background-color: #1f3a5f;
  color: white;
  padding: 40px 20px 20px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand, .footer-links, .footer-contact {
  flex: 1 1 250px;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-links h4, .footer-contact h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #b2ebf2;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #b2ebf2;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #ccc;
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* Responsive */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.5rem;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 5px 0;
  }
}

/* Animation fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Galerie d’images */
/* Galerie d’images améliorée */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 30px;
}

.gallery img {
  width: 100%;
  max-width: 360px;
  height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

/* Carrusel - placeholders visibles */
.carousel-wrapper {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-slide {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 100%;
  max-width: 1200px;
}

.carousel-image-placeholder {
  width: 100%;
  height: 500px;
  background-color: #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
  font-size: 1.2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carousel-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 10px;
  margin-bottom: 10px;
}

.logo {
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}


/* Estilos para la sección .scroll-block en #activite */
.scroll-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
  gap: 20px;
}

.scroll-block img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.scroll-block img:hover {
  transform: scale(1.02);
}

.scroll-block p {
  max-width: 700px;
  text-align: center;
  font-size: 1.1rem;
  color: #444;
}
/* Secciones de fondo */
.section-colored {
  background-color: var(--secondary-blue);
  color: white;
  padding: 80px 0;
}

.section-light {
  background-color: #f4f7fa;
  color: #333;
}

/* Testimonios destacados */
blockquote {
  background-color: #f9f9f9;
  border-left: 5px solid #1F3A5F;
  padding: 20px;
  margin: 20px auto;
  font-style: italic;
  max-width: 700px;
  color: #333;
}

/* Botones amplios con diseño moderno */
.btn {
  background-color: #1F3A5F;
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #547AA5;
}
/* --- Main nav styles for mobile (dropdown) --- */
.main-nav {
  display: none;
  background-color: #1F3A5F; /* fondo azul sólido */
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  z-index: 10001;
  color: white;
}

.main-nav.open {
  display: block;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.main-nav ul li a {
  color: white !important;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  padding: 10px 0;
}

@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding: 0 20px;
  flex-wrap: nowrap;
  text-align: center;
}
/* Carrusel: caption y botón */
.carousel-caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(31, 58, 95, 0.8);
  padding: 15px 25px;
  border-radius: 6px;
}

.btn-carousel {
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
}

/* Botón volver arriba */
.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-blue);
  color: white;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 1.2rem;
  text-decoration: none;
  display: none;
  z-index: 999;
}

.scroll-to-top.show {
  display: block;
}
/* Mejora de transición del carrusel */
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 1200px;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 0;
}

.carousel-slide:first-child {
  position: relative;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Flechas izquierda y derecha */
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(31, 58, 95, 0.6);
  color: white;
  border: none;
  padding: 12px;
  font-size: 2rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background-color: rgba(31, 58, 95, 0.9);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

/* Indicadores de carrusel */
.carousel-indicators {
  text-align: center;
  margin-top: 15px;
}

.carousel-indicators .dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.carousel-indicators .dot.active {
  background-color: #1F3A5F;
}
/* Fade-in scroll animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Efectos diferenciados para entradas de sección */
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-zoom {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.fade-in-zoom.visible {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 768px) {
  .header-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 10px 20px;
  }

  .header-logo {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .logo {
    max-height: 60px;
    width: auto;
  }

  .mobile-nav {
    display: none;
    background-color: white;
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    position: absolute;
    top: 100px;
    width: 100%;
    left: 0;
    z-index: 999;
  }

  .mobile-nav.open {
    display: block;
  }

  nav ul {
    display: none;
  }
  .split-section {
    flex-direction: column-reverse;
    text-align: center;
  }

  .split-section .image {
    max-width: 100%;
    margin-top: 20px;
  }
}

/* Estilos para el botón de menú hamburguesa con SVG */
/* Botón menú hamburguesa: visible solo en móvil */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-blue);
}

.menu-toggle svg {
  fill: var(--primary-blue);
  width: 28px;
  height: 28px;
}

.menu-toggle:hover svg {
  fill: var(--secondary-blue);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
}
/* Imagen de portada responsive */
/* .responsive-banner {
  display: block;
  width: 100%;
  height: 75vh;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .responsive-banner {
    height: 45vh;
  }
}
*/

/* Imagen principal dentro del contenedor .hero-container */
.hero-image {
  display: block;
  width: 100%;
  height: 70vh;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .hero-image {
    height: 45vh;
  }
}

/* Sección dividida en imagen y texto */
  .split-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: var(--secondary-blue);
    color: white;
    padding: 60px 20px;
  }

.split-section .text {
  flex: 1;
  padding-right: 20px;
}

.split-section .image {
  flex: 1;
  display: flex;
  justify-content: center;
  max-width: 50%;
}

.split-section .image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.split-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .split-section {
    flex-direction: column-reverse;
    text-align: center;
  }

  .split-section .image {
    max-width: 100%;
    margin-top: 20px;
  }
}
/* Sección con imagen de fondo y superposición oscura */
.overlayed-section {
  position: relative;
  width: 100%;
  height: 70vh;
  background-image: url('../imgs/consultation/DrAAimg-consultation-1.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Nueva sección visual con imagen de fondo y capa superpuesta */
.overlayed-section {
  position: relative;
  width: 100%;
  height: 70vh;
  background-image: url('../imgs/consultation/DrAAimg-consultation-5.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.overlayed-content-1 {
    z-index: 10;
    background-color: #ffffffcc;
    padding: 10px;
    padding-bottom: 30px;
    padding-top: 20px;
}

.overlayed-section-2 {
  position: relative;
  width: 100%;
  height: 70vh;
  background-image: url('../imgs/accouchement/c%C3%A9sarienne1-dr-aas.JPG');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.overlayed-content-2 {
    z-index: 10;
    background-color: #2b6eb2f2;
    padding: 10px;
    padding-bottom: 50px;
    padding-top: 40px;
    color: white;
        text-align: center;
    max-width: 700px;
    margin: 20px auto;
    ;
}



.overlayed-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 0;
}

.overlayed-section .overlay-text {
  position: relative;
  z-index: 1;
  color: white;
  padding: 20px;
  max-width: 800px;
  margin-bottom: 40px;
}

.overlay-text p {
  margin-bottom: 20px;
}

.overlayed-section .btn {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .overlayed-section {
    height: 50vh;
  }
}
/* Imagen skyline de Barcelona centrada y limitada en altura */
.barcelona-image {
  display: block;
  margin: 0 auto 30px auto;
  width: 100%;
  max-height: 200px;
  object-fit: contain;
}
.approche-bg-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  background: var(--secondary-blue) url('../imgs/Chirurgies/dr-aas-chirurgie-1.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.approche-bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(44, 110, 178, 0.75); /* capa azul semitransparente */
  z-index: 0;
}

.approche-bg-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.approche-bg-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.approche-bg-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.approche-bg-content .btn {
  background-color: #1F3A5F;
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.approche-bg-content .btn:hover {
  background-color: #547AA5;
}
/* Nueva sección interactiva de especialités */
.specialites-interactive {
  background-color: #f4f7fa;
  padding: 60px 20px;
  text-align: center;
}

.specialites-interactive h2 {
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #1F3A5F;
}

.specialites-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.specialite-card {
  background-color: white;
  background-image: url('../imgs/specialites/gynecologie.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px 20px;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  color: white;
}

.specialite-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

/* Mejorar legibilidad del texto sobre fondo imagen */
.specialite-card h3,
.specialite-card p {
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

.specialite-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.specialite-card p {
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .specialites-grid {
    flex-direction: column;
    align-items: center;
  }
}
/* Fondos personalizados para cada especialidad */
.specialite-gyneco {
  background-image: url('../imgs/specialites/gynecologie.jpg');
}

.specialite-grossesse {
  background-image: url('../imgs/specialites/grossesse.jpg');
}

.specialite-accouchement {
  background-image: url('../imgs/specialites/accouchement.jpg');
}

.specialite-chirurgie {
  background-image: url('../imgs/specialites/chirurgie.jpg');
}

.specialite-pma {
  background-image: url('../imgs/specialites/pma.jpg');
}

.specialite-echo {
    background-image: url('../imgs/specialites/echo.jpg');
}

/* Imágenes skyline */
.skyline-image {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  object-position: center;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
. 
/* Section Où me trouver */
#ou-me-trouver .location-info {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 30px;
}

#ou-me-trouver .location-text {
  flex: 1 1 300px;
  font-size: 1rem;
  line-height: 1.6;
}

#ou-me-trouver .location-text a {
  color: var(--secondary-blue);
  text-decoration: none;
}

#ou-me-trouver .location-map {
  flex: 1 1 400px;
}

@media (max-width: 768px) {
  #ou-me-trouver .location-info {
    flex-direction: column;
  }

  #ou-me-trouver .location-map iframe {
    height: 250px;
  }
}

/* Section Où me consulter avec logo */
.ou-consulter-section {
  background-color: #33aab8;
  padding: 60px 20px;
  color: white;
}

.ou-consulter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.ou-consulter-logo {
  flex: 1 1 30%;
  max-width: 300px;
  text-align: center;
}

.ou-consulter-logo img {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.ou-consulter-texte {
  flex: 1 1 65%;
  font-size: 1rem;
  line-height: 1.6;
}

.ou-consulter-texte p {
  margin-bottom: 10px;
}

.ou-consulter-texte a {
  color: white;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .ou-consulter-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .ou-consulter-logo,
  .ou-consulter-texte {
    flex: 1 1 100%;
  }

  .ou-consulter-logo {
    margin-top: 20px;
  }
}
/* Animación del logo de Gynepole */
.gynepole-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.gynepole-logo.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section entretien - accordion */
.entretien-section {
  background-color: #f4f7fa;
  padding: 60px 20px;
}

.entretien-section h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #1F3A5F;
  margin-bottom: 30px;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.accordion-button {
  background-color: #1F3A5F;
  color: white;
  padding: 18px 24px;
  text-align: left;
  width: 100%;
  border: none;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

.accordion-button:hover {
  background-color: #2C6EB2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-content {
  display: none;
  background-color: white;
  padding: 20px;
  font-size: 1rem;
  color: #333;
}

.accordion-content.active {
  display: block;
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accordion-content iframe {
  margin-top: 15px;
  width: 100%;
  height: 300px;
  border-radius: 8px;
}

.accordion-content h3 {
  font-size: 1.1rem;
  color: #1F3A5F;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.accordion-content p {
  margin-bottom: 12px;
  line-height: 1.6;
}