html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

* {
    -webkit-tap-highlight-color: transparent;
}
 
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

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

.about-grid .reveal:nth-child(1) { transition-delay: 0s; }
.about-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.about-grid .reveal:nth-child(3) { transition-delay: 0.3s; }
.about-grid .reveal:nth-child(4) { transition-delay: 0.45s; }

.cards .reveal:nth-child(1) { transition-delay: 0s; }
.cards-row .reveal:nth-child(1) { transition-delay: 0s; }
.cards-row .reveal:nth-child(2) { transition-delay: 0.2s; }
.cards .reveal:nth-child(2) { transition-delay: 0.1s; }
.cards .reveal:nth-child(3) { transition-delay: 0.2s; }
.cards .reveal:nth-child(4) { transition-delay: 0.3s; }
.cards .reveal:nth-child(5) { transition-delay: 0.4s; }
.cards .reveal:nth-child(6) { transition-delay: 0.5s; }
.cards .reveal:nth-child(7) { transition-delay: 0.6s; }
.cards .reveal:nth-child(8) { transition-delay: 0.7s; }

.faq-list .reveal:nth-child(1) { transition-delay: 0s; }
.faq-list .reveal:nth-child(2) { transition-delay: 0.15s; }
.faq-list .reveal:nth-child(3) { transition-delay: 0.3s; }
.faq-list .reveal:nth-child(4) { transition-delay: 0.45s; }

.location-info .reveal:nth-child(1) { transition-delay: 0s; }
.location-info .reveal:nth-child(2) { transition-delay: 0.15s; }
.location-info .reveal:nth-child(3) { transition-delay: 0.3s; }

#inicio,
#nosotros,
#services-section,
#contacto {
    scroll-margin-top: 80px;
}

@font-face {
    font-family: 'General Sans';
    src: url('../general-sans-webfont/GeneralSans-Extralight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'General Sans';
    src: url('../general-sans-webfont/GeneralSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'General Sans';
    src: url('../general-sans-webfont/GeneralSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'General Sans';
    src: url('../general-sans-webfont/GeneralSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'General Sans';
    src: url('../general-sans-webfont/GeneralSans-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'General Sans';
    src: url('../general-sans-webfont/GeneralSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'General Sans';
    src: url('../general-sans-webfont/GeneralSans-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'General Sans';
    src: url('../general-sans-webfont/GeneralSans-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
}
*{  
    font-family:'General Sans',sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


header{
    background-color:#1B3A6B;
}

li{
    list-style: none;
}

body{
    background-color: #F8FAFC;
}

h1{
    opacity:0;
    transform:translateX(-60px);
    animation:titleIn .9s ease forwards;
}

@keyframes titleIn{
    to{
        opacity:1;
        transform:translateX(0);
    }
}
/* NAVBAR*/
.nav-icon{  
    color:#F8FAFC;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.nav-icon img {
    width: 80px;
    height: auto;
    display: block;
}

.nav-title {
    color: #F8FAFC;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.nav-link{
    font-weight: bold;
    text-decoration: none;
    color:#F8FAFC;
}

.navbar-section {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar{
   
    min-height: 70px ;
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.navbar-menu{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:55px;
}


.nav-link {
  color: #F8FAFC;
  display: inline-block;
  cursor: pointer;

  position: relative;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #2f5174;
  transform: translateY(-1px);
}

.nav-link:active {
  transform: translateY(1px) scale(0.97);
}

.hamburguer{
    display: none;
    cursor: pointer;
}

.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin:5px auto;
    transition:all 0.3s ease-in-out;
    background-color: #F8FAFC;
}

/* Hero Image section  */
.hero-section {
    min-height: calc(100vh - 80px);
     display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 4rem;

    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.hero-text h1 {
    color:#1B3A6B;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom:1.25rem;
}
/* Text description from hero section*/ 
.hero-text p {
    color:#4A5568;
    margin: 0;
    max-width: 600px;
    line-height:1.7;
    font-size: clamp(1rem, 2vw, 1.125rem);
}

.hero-image{
    display:flex;
    justify-content:center;
}
.hero-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -6px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-image img {
        animation: none;
    }
}

.hero-btn-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.4rem 1rem;
    background-color: #0F2D3A;
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid cornflowerblue;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.15s ease;
}

.hero-btn-link:hover {
    background-color: #0f2d3ae7;
}

.hero-btn-link:active {
    transform: translateY(2px) scale(0.98);
}
.location{
    margin-top:0.5rem;
}
/* About us section */
.about-us {
    padding: 5rem 2rem;
}

.about-us-container {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-us-container h2{
    color: #1B3A6B;
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    margin-bottom: 1rem;
}

.about-grid{
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.item {
    padding: 2rem 1.75rem;
    border: none;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    border-left: 4px solid #60b3aa;
}

.item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.item-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1B3A6B;
    display: block;
    margin-bottom: 0.75rem;
}

.item p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #555;
}


.item-text{
    color: #666;
}
/* "Our team " section */

.team-div {
    padding: 5rem 2rem;
}

.team-div-container{
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.team-div-container h2{
    color: #1B3A6B;
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    margin-bottom: 0.75rem;
}

.team-div-container > p{
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cards-row{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
}


.card-member {
    background: #fff;
    border-radius: 1.5rem;
    padding: 0.5rem;
    width: 20rem;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    font-family:'General Sans',sans-serif;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
    animation: float 5s ease-in-out infinite;
}
.card-member:nth-child(2) {
    animation-delay: -2.5s;
}

.card-member:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.card-member.active {
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.card-member::before {
    content: "";
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    border-radius: 0 0 1.5rem 1.5rem;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.card-member:hover::before,
.card-member.active::before {
    opacity: 1;
}

.member-team {
    width: 100%;
    display: block;
    border-radius: 1.5rem;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 2 / 3;
    transition: transform 0.6s ease;
}

.card-member:hover .member-team,
.card-member.active .member-team {
    transform: scale(1.05);
}

.card-member section {
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    z-index: 2;
    pointer-events: none;
}

.card-member h2 {
    margin: 0 0 0.3rem;
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.45s ease 0.10s, transform 0.45s ease 0.10s;
}

.card-member:hover h2,
.card-member.active h2 {
    opacity: 1;
    transform: translateY(0);
}

.card-member p {
    margin: 0;
    color: #ddd;
    line-height: 1.4;
    font-size: 0.85rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.45s ease 0.20s;
}

.card-member:hover p,
.card-member.active p {
    opacity: 1;
    transform: translateY(0);
}

.btn-whatsapp-card {
    margin-top: 0.5rem;
    padding: 0.4rem 1.1rem;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    pointer-events: auto;
    transform: translateY(10px);
    transition: opacity 0.45s ease 0.25s, transform 0.45s ease 0.25s, background 0.3s ease;
}

.btn-whatsapp-card:hover {
    background: #1da851;
    transform: scale(1.05);
}

.card-member:hover .btn-whatsapp-card,
.card-member.active .btn-whatsapp-card {
    opacity: 1;
    transform: translateY(0);
}

/* Our services */
.services-section {
  position: relative;
}

.wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  cursor: pointer;
  padding: 0 4rem;
  will-change: transform;
}

.pen-title {
  position: absolute;
  top: 3rem;
  left: 4rem;
  z-index: 10;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  text-align: left;
  color: #0F2D3A;
  font-weight: 700;
  margin: 0;
}
.card {
  flex: 1 1 0;
  min-width: 300px;
  aspect-ratio: 4 / 5;
  position: relative;
  padding: 3rem 2rem;
  color: rgb(0, 0, 0);
  justify-self: center;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.45, 0.45, 0.95);
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255,255,255,0.25);
}

.card .card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card .card-content .bottom h2 {
  font-size: 2.6rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.card .top {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  background: rgba(0,0,0,0.65);
  border-radius: 12px;
  padding: 0 1rem;
}

.card .top p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
}

.card.active .top {
  max-height: 200px;
  opacity: 1;
}

.card .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card .bottom .bookmark {
  margin-left: 5rem;
  border: 2px solid white;
  padding: 0.7rem;
  border-radius: 50%;
}

.card .bottom .bookmark .bookmark-icn {
  fill: white;
}

.card .bottom .bookmark:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
}

.card .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 20px;
  overflow: hidden;
  z-index: 0;
}

.card .card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3) 50%, transparent 80%);
  z-index: 1;
}

.card .card-bg .bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  vertical-align: middle;
}

.card .shadow {
  position: absolute;
  width: 85%;
  height: 100%;
  overflow: hidden;
  display: flex;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -20px;
  z-index: -2;
  border-radius: 20px;
  filter: blur(20px);
  opacity: 0.45;
}

.card .shadow .shadow-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*location section */
#contacto {
    padding: 5rem 2rem;
}

.container-location{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}
.location-title h2{
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    color: #0F2D3A;
    margin-bottom: 1rem;
}
.location-title p{
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}
.google-maps-location{
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
}
.google-maps-location iframe{
    width: 100%;
    height: 350px;
    border-radius: 8px;
    display: block;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f9f9f9;
    padding: 1.25rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.info-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.1rem;
    color: #0F2D3A;
    margin-bottom: 0.3rem;
}

.info-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Media queries */
@media (max-width: 1024px) {
    .hero-section {
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-image img {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .hero-text p {
        color:#375754;
        max-width: 100%;
        margin: 0 auto;
    }
    .hero-btn-link {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    .hero-image img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .about-us {
        padding: 3rem 1.5rem;
    }

    .about-grid {
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .item{
        padding: 1.25rem;
    }

    .item-title {
        font-size: 1rem;
    }

    .team-div {
        padding: 3rem 1.5rem;
    }

    .team-div-container h2 {
        font-size: 2rem;
    }

    .cards-row{
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .card-member{
        width: 22rem;
    }

    .card {
        min-height: 280px;
        padding: 2rem 1.5rem;
    }

    .card .card-content .bottom h2 {
    
        font-size: 1.8rem;
    }



    .services-section {
        height: auto !important;
    }

    .wrapper {
        position: relative !important;
        height: auto !important;
        overflow: visible !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
        margin: 4rem auto;
        max-width: 1000px;
    }

    .cards {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
        padding: 0 !important;
        transform: none !important;
        width: 100%;
    }

    .card {
        min-width: 0;
    }

    .pen-title {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        font-size: 2rem;
        text-align: center;
        margin: 2rem 1.5rem 2.5rem;
        color: #0F2D3A;
        font-weight: 700;
    }
}

.schedule {
    border:2px solid;
    padding: 0.5rem;
    border-radius: 10px;
}
@media (max-width:768px) {
    #contacto {
        padding: 3rem 1.5rem;
    }
    .container-location {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .location-title h2 {
        font-size: 2rem;
    }
    .info-card {
        padding: 1rem;
    }
    .info-content h3 {
        font-size: 1rem;
    }
    .google-maps-location iframe {
        height: 250px;
    }
    .about-grid{
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
}
}

@media(max-width:768px) {
    .hamburguer{
        display: block;
    }
    .hamburguer.active .bar:nth-child(2){
        opacity: 0;
    }
    .hamburguer.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
    }
     .hamburguer.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
    }
    .navbar-menu{
        position:fixed;
        left:-100%;
        top:70px;
        gap:0;
        flex-direction: column;
        background-color: #1B3A6B;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        z-index: 999;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        padding-bottom: 1rem;
    }
    .navbar-item{
        margin: 16px 0;
        width: 100%;
    }
    .navbar-item .nav-link {
        padding: 0.5rem 1rem;
        display: block;
        border-radius: 8px;
    }
    .navbar-item .nav-link:hover {
        background: rgba(255,255,255,0.1);
    }

    .navbar-menu.active{
        left: 0;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 1.25rem;
        gap: 1.5rem;
        min-height: auto;
    }

    .hero-text h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-text p {
        font-size: 0.95rem;
    }

    .hero-image img {
        max-width: 220px;
    }

    .hero-btn-link {
        padding: 0.6rem 0.8rem;
        font-size: 1.15rem;
        width: 100%;
        text-align: center;
    }

    #contacto {
        padding: 2rem 1rem;
    }
    .location-title h2 {
        font-size: 1.75rem;
    }
    .info-card {
        padding: 0.8rem;
    }
    .info-content h3 {
        font-size: 0.9rem;
    }
    .info-content p {
        font-size: 0.85rem;
    }
    .google-maps-location iframe {
        height: 200px;
    }
    .cards {
        grid-template-columns: 1fr !important;
    }
    .nav-icon img {
        width: 50px;
    }
    .nav-title {
        font-size: 0.85rem;
        white-space: normal;
    }
    .nav-icon {
        gap: 0.4rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background: #f8fafc;
}

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

.faq-container h2 {
    font-size: clamp(2.2rem, 3.5vw, 3rem);
    color: #0F2D3A;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0F2D3A;
    user-select: none;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #1B3A6B;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #60b3aa;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-cta p {
    font-size: 1.1rem;
    color: #0F2D3A;
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #0F2D3A;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.faq-btn:hover {
    background: #1B3A6B;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1.5rem;
    }
    .faq-container h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.25rem;
    }
    .faq-cta {
        padding: 1.5rem;
    }
}

/* Footer */
.footer {
    background: #1B3A6B;
    color: #F8FAFC;
    padding: 4rem 2rem 0;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.footer h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #fff;
}

.footer p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(248, 250, 252, 0.8);
    margin-bottom: 1.5rem;
}

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

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer ul li a {
    color: rgba(248, 250, 252, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #60b3aa;
}


.footer-hours ul li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.8);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(248, 250, 252, 0.1);
}

.footer-hours ul li:last-child {
    border-bottom: none;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: rgba(248, 250, 252, 0.8);
}

.footer-contact ul li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(248, 250, 252, 0.15);
    margin-top: 3rem;
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
    color: rgba(248, 250, 252, 0.6);
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 1.25rem 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
