* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lato", sans-serif;
  color: #3E3E3E;
  line-height: 1.6;
}

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

.site-header {
  background-color: #3F93B1;
  padding: 15px 0;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo {
  height: 50px;
}
.site-header nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}
.site-header nav a {
  color: #E8C527;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
.site-header nav a:hover {
  color: #8C6239;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.welcome-message {
  padding: 40px 20px;
  text-align: center;
  background-color: #F9EBD7;
}
.welcome-message h1 {
  font-family: "Fredoka One", sans-serif;
  font-size: 2rem;
  color: #8C6239;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .welcome-message h1 {
    font-size: 1.5rem;
  }
}

.story-section {
  padding: 80px 0;
}
.story-section .container {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .story-section .container {
    flex-direction: column;
  }
}
.story-section .story-content {
  flex: 1;
}
.story-section .story-content p {
  font-size: 1.1rem;
  line-height: 1.8;
}
.story-section .story-image {
  flex: 1;
}
.story-section .story-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blue-light-section {
  background-color: #3F93B1;
  padding: 60px 0;
  text-align: center;
  color: #F9EBD7;
}
.blue-light-section h2 {
  font-family: "Fredoka One", sans-serif;
  font-size: 2rem;
  color: #E8C527;
  margin-bottom: 20px;
}
.blue-light-section p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}
.blue-light-section .divider {
  width: 60%;
  max-width: 500px;
  height: 3px;
  background-color: #8C6239;
  margin: 20px auto;
}

.cards-section {
  padding: 80px 0;
}
.cards-section .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .cards-section .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .cards-section .card-grid {
    grid-template-columns: 1fr;
  }
}
.cards-section .card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
}
.cards-section .card:hover {
  transform: translateY(-5px);
}
.cards-section .card .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.85);
  pointer-events: none;
  z-index: 1;
}
.cards-section .card-header {
  background-color: #3F93B1;
  color: white;
  padding: 15px;
  font-family: "Fredoka One", sans-serif;
  font-size: 1.2rem;
  text-align: center;
  z-index: 2;
}
.cards-section img {
  width: 100%;
  height: 422px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.cards-section .card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  padding: 20px;
  font-size: 0.95rem;
  text-align: center;
  z-index: 2;
}

.testimonials-section {
  background-color: #3F93B1;
  padding: 60px 0;
  color: #F9EBD7;
}
.testimonials-section h2 {
  font-family: "Fredoka One", sans-serif;
  font-size: 2rem;
  color: #E8C527;
  text-align: center;
  margin-bottom: 40px;
}
.testimonials-section .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .testimonials-section .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .testimonials-section .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
.testimonials-section .testimonial-block {
  padding: 25px;
  background-color: rgba(249, 235, 215, 0.1);
  border-left: 4px solid #8C6239;
  border-radius: 8px;
}
.testimonials-section .testimonial-block h3 {
  font-family: "Fredoka One", sans-serif;
  color: #E8C527;
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.testimonials-section .testimonial-block p {
  font-size: 1.05rem;
}

.testimonials-section + .site-footer {
  margin-top: 60px;
}

.site-footer {
  background-color: #3F93B1;
  padding: 40px 0;
  color: #F9EBD7;
}
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .site-footer .container {
    flex-direction: column;
    gap: 30px;
  }
}
.site-footer .footer-contact p {
  margin-bottom: 20px;
}
.site-footer .footer-contact p a {
  color: #E8C527;
  text-decoration: underline;
}
.site-footer .footer-contact p a:hover {
  opacity: 0.9;
}
.site-footer .footer-logo {
  text-align: center;
}
.site-footer .footer-logo img {
  height: 60px;
  margin-bottom: 20px;
}
.site-footer .footer-logo .footer-links {
  display: flex;
  gap: 20px;
}
.site-footer .footer-logo .footer-links a {
  color: #F9EBD7;
  text-decoration: none;
}
.site-footer .footer-logo .footer-links a:hover {
  text-decoration: underline;
}

.info-section {
  padding: 80px 0;
}
.info-section .two-column-layout {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .info-section .two-column-layout {
    flex-direction: column;
  }
}
.info-section .two-column-layout.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .info-section .two-column-layout.reverse {
    flex-direction: column;
  }
}
.info-section .info-block {
  flex: 1;
}
.info-section .info-block h2 {
  font-family: "Fredoka One", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.info-section .info-block p {
  font-size: 1.1rem;
  line-height: 1.8;
}
.info-section .info-block.brown-header h2 {
  color: #8C6239;
}
.info-section .info-block.brown-header::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #E8C527;
}
.info-section .info-block.green-header h2 {
  color: #6DBE45;
}
.info-section .info-block.green-header::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #E8C527;
}
.info-section .info-image {
  flex: 1;
}
.info-section .info-image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 568px) {
  .info-section .info-image img {
    max-width: 300px;
    margin: 0 auto;
  }
}

.cards-section {
  padding: 80px 0;
}
.cards-section .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .cards-section .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .cards-section .card-grid {
    grid-template-columns: 1fr;
  }
}
.cards-section .blue-card {
  background-color: #3F93B1;
  padding: 30px;
  border-radius: 12px;
  color: #F9EBD7;
  display: flex;
  flex-direction: column;
  min-height: 350px;
}
.cards-section .blue-card h3 {
  font-family: "Fredoka One", sans-serif;
  color: #E8C527;
  margin-bottom: 20px;
  font-size: 1.3rem;
  text-align: center;
}
.cards-section .blue-card p {
  font-size: 1.05rem;
  text-align: center;
}

.prices-section {
  background-color: #3F93B1;
  padding: 60px 0;
  color: #F9EBD7;
}
.prices-section h2 {
  font-family: "Fredoka One", sans-serif;
  font-size: 2rem;
  color: #E8C527;
  text-align: center;
  margin-bottom: 40px;
}
.prices-section .price-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .prices-section .price-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .prices-section .price-columns {
    grid-template-columns: 1fr;
  }
}
.prices-section .price-column {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  text-align: center;
}
.prices-section .price-column h3 {
  font-family: "Fredoka One", sans-serif;
  color: #E8C527;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.prices-section .price-column p {
  font-size: 1.05rem;
}
.prices-section .combi-box {
  margin-top: 40px;
  background-color: #6DBE45;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}
.prices-section .combi-box p {
  font-size: 1.05rem;
}

.policy-section,
.babies-section {
  padding: 80px 0;
}
.policy-section .policy-box,
.babies-section .policy-box {
  padding: 30px;
  border-radius: 12px;
  background-color: #F9EBD7;
}
.policy-section .policy-box h2,
.babies-section .policy-box h2 {
  font-family: "Fredoka One", sans-serif;
  font-size: 1.8rem;
  color: #8C6239;
  margin-bottom: 20px;
  text-align: center;
}
.policy-section .policy-box p,
.babies-section .policy-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}
.policy-section .policy-box.yellow-border,
.babies-section .policy-box.yellow-border {
  border: 3px solid #E8C527;
}
.policy-section .policy-box.green-border,
.babies-section .policy-box.green-border {
  border: 3px solid #6DBE45;
}

.events-headline {
  padding: 60px 0;
}
.events-headline h1 {
  font-family: "Fredoka One", sans-serif;
  font-size: 2.2rem;
  color: #8C6239;
  text-align: center;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .events-headline h1 {
    font-size: 1.8rem;
  }
}

.event-card {
  background-color: #3F93B1;
  padding: 60px 0;
  border-radius: 20px;
  margin-bottom: 60px;
}
.event-card .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.event-card .event-content {
  display: flex;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .event-card .event-content {
    flex-direction: column;
  }
}
.event-card .event-text {
  flex: 1;
  color: #F9EBD7;
}
.event-card .event-text h2 {
  font-family: "Fredoka One", sans-serif;
  color: #E8C527;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.event-card .event-text h3 {
  font-family: "Fredoka One", sans-serif;
  color: #E8C527;
  font-size: 1.4rem;
  margin: 25px 0 10px;
}
.event-card .event-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}
.event-card .event-image {
  flex: 1;
}
.event-card .event-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .event-card .event-image img {
    max-width: 400px;
    margin: 0 auto;
  }
}

.contact-section {
  padding: 80px 0;
}
.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-section .contact-content {
  display: flex;
  gap: 60px;
}
@media (max-width: 768px) {
  .contact-section .contact-content {
    flex-direction: column;
  }
}
.contact-section .contact-info {
  flex: 1;
}
.contact-section .contact-info .map img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.contact-section .contact-info .info-block {
  margin-top: 40px;
}
.contact-section .contact-info .info-block h3 {
  font-family: "Fredoka One", sans-serif;
  color: #8C6239;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.contact-section .contact-info .info-block p {
  font-size: 1.1rem;
  line-height: 1.6;
}
.contact-section .contact-info .info-block p a {
  color: #3E3E3E;
  text-decoration: underline;
}
.contact-section .contact-info .info-block p a:hover {
  color: #8C6239;
}
.contact-section .contact-form {
  flex: 1;
}
.contact-section .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-section .contact-form .form-group input, .contact-section .contact-form .form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-section .contact-form .form-group input:focus, .contact-section .contact-form .form-group textarea:focus {
  outline: none;
  border-color: #3F93B1;
  box-shadow: 0 0 0 3px rgba(63, 147, 177, 0.1);
}
.contact-section .contact-form .form-group input::-moz-placeholder, .contact-section .contact-form .form-group textarea::-moz-placeholder {
  color: #999;
}
.contact-section .contact-form .form-group input::placeholder, .contact-section .contact-form .form-group textarea::placeholder {
  color: #999;
}
.contact-section .contact-form .form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-section .contact-form .send-button {
  background-color: #3F93B1;
  color: #E8C527;
  font-family: "Fredoka One", sans-serif;
  font-size: 1.1rem;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.contact-section .contact-form .send-button:hover {
  background-color: rgb(49.6125, 115.7625, 139.3875);
  transform: translateY(-2px);
}
.contact-section .contact-form .send-button:active {
  transform: translateY(0);
}

.faqs-section {
  padding: 80px 0;
}
.faqs-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.faqs-section .faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .faqs-section .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .faqs-section .faq-grid {
    grid-template-columns: 1fr;
  }
}
.faqs-section .faq-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #3F93B1;
  transition: transform 0.3s ease;
}
.faqs-section .faq-card:hover {
  transform: translateY(-5px);
}
.faqs-section .faq-card .faq-header {
  background-color: #E8C527;
  color: #8C6239;
  font-family: "Fredoka One", sans-serif;
  font-size: 1.3rem;
  padding: 15px 20px;
  text-align: center;
}
.faqs-section .faq-card .faq-body {
  padding: 25px;
  color: #F9EBD7;
}
.faqs-section .faq-card .faq-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
}
.faqs-section .faq-card .faq-body p:last-child {
  margin-bottom: 0;
}
.faqs-section .faq-card .faq-body a {
  color: #E8C527;
  text-decoration: underline;
}
.faqs-section .faq-card .faq-body a:hover {
  opacity: 0.9;
}/*# sourceMappingURL=style.css.map */