/* Reset and global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Montserrat', sans-serif;
  background-color: #dde9f1;
  color: #022135;
  line-height: 1.6;
}

/* Wrapper */
.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
}

/* Header */
.site-header {
  background-color: #022135;
  color: #dde9f1;
  padding: 5px 0;
  font-size: 0.9rem;
}
.site-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.site-header nav a {
  color: #dde9f1;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}
.site-header nav a:hover {
  color: #de0f3f;
}

/* Logo */
.brand {
  order: 2;
}
.logo {
  height: 80px;
}

/* Home intro */
.home-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
.home-intro .wrap {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}
.home-intro .intro-text {
  flex: 1;
  margin-right: 20px;
}
.home-intro .intro-text h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.home-intro .intro-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}
.home-intro .intro-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.home-intro .intro-image img {
  max-width: 100%;
  max-height: 400px;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* FAQ */
.faq-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.faq-photo {
  flex: 1;
  max-width: 33%;
}
.faq-photo img {
  width: 100%;
  height: auto;
  display: block;
}
.faq-content {
  flex: 2;
}
.faq-item {
  margin-bottom: 15px;
}
.faq-item h3 {
  cursor: pointer;
  font-weight: bold;
  transition: color 0.3s;
}
.faq-item h3:hover {
  color: #de0f3f;
}
.faq-item p {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 5px;
}
.faq-item p.show {
  max-height: 1000px;
}

/* Footer */
.site-footer {
  background-color: #022135;
  color: #dde9f1;
  padding: 5px 0;
  font-size: 0.8rem;
  text-align: center;
}
.site-footer a {
  color: #de0f3f;
  text-decoration: none;
}
.site-footer a:hover {
  text-decoration: underline;
}

/* Lists */
.no-bullets {
  list-style-type: none;
  padding-left: 0;
}

/* Responsive */

/* Medium screens (tablets) */
@media screen and (max-width: 1024px) {
  .home-intro .intro-text h1 { font-size: 1.8rem; }
  .home-intro .intro-text p { font-size: 1rem; }
}

/* Small screens (phones) */
@media screen and (max-width: 768px) {
  .home-intro .wrap {
    flex-direction: column;
    text-align: center;
  }
  .intro-image {
    margin-top: 20px;
    justify-content: center;
  }
  .faq-container {
    flex-direction: column;
  }
  .faq-photo,
  .faq-content {
    max-width: 100%;
    flex: unset;
  }
}

/* Extra small screens */
@media screen and (max-width: 480px) {
  .home-intro .intro-text h1 { font-size: 1.5rem; }
  .home-intro .intro-text p { font-size: 0.95rem; }
  .faq-item h3 { font-size: 1rem; padding: 8px 0; }
  .site-header .wrap {
    flex-direction: column;
    text-align: center;
  }
  .logo { height: 60px; }
}