@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");

:root {
  --primary: #1a3e4c;
  --secondary: #b39b7d;
  --background: #ffffff;
}

body {
  background-color: var(--background);
  color: var(--primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif;
}

p,
span,
div,
a,
button,
input,
textarea,
select {
  font-family: "Open Sans", sans-serif;
}

.text-balance {
  text-wrap: balance;
}

.advantages-section {
  text-align: center;
  background-color: transparent;
  padding: 20px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.advantages-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.advantage-item {
  text-align: center;
  background: #f5f7f8;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out, background-color 0.2s, opacity 0.2s;
  opacity: 0.9;
  cursor: pointer;
  border: 1px solid rgba(26, 62, 76, 0.1);
  transform: translateY(20px);
  opacity: 0;
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  color: #1a3e4c;
  transition: color 0.3s ease;
}

.advantage-item:hover .icon-container {
  color: white;
}

.advantage-item:hover {
  transform: translateY(-5px);
  background-color: #b39b7d;
  opacity: 1;
}

.advantage-item p {
  font-size: 22px;
  font-weight: bold;
  color: #1a3e4c;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: "Merriweather", serif;
}

.advantage-item span {
  display: block;
  font-size: 18px;
  font-weight: normal;
  margin-top: 12px;
  color: #384d57;
  font-family: "Open Sans", sans-serif;
}

.advantage-item:hover p,
.advantage-item:hover span {
  color: white;
}

@media screen and (max-width: 768px) {
  .advantages-container {
    grid-template-columns: 1fr;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Transition for FAQ answers */
.faq-answer {
  transition: height 0.3s ease, opacity 0.3s ease;
}

/* Animation for WhatsApp button */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.animate-pulse {
  animation: pulse 2s infinite;
}
