.faq-section {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  font-family: Arial, sans-serif;
  max-width: 800px;
  margin: auto;
}
.faq-section h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}
.faq-item h3 {
  font-size: 20px;
  margin: 0;
  color: #2a2a2a;
  cursor: pointer;
  position: relative;
}
.faq-item h3::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 24px;
  color: #888;
}
.faq-item.open h3::after {
  content: "-";
}
.faq-item p {
  display: none;
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
}
.faq-item.open p {
  display: block;
}
.cta-section {
    text-align: center;
    margin: 30px 0;
}

.cta-button {
    display: inline-block;
    margin: 10px;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    background-color: #004b87; /* Clausen blue */
    color: #fff;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #003864;
    transform: scale(1.05);
}

.cta-button.secondary {
    background-color: #e63946; /* Bright red for attention */
}

.cta-button.secondary:hover {
    background-color: #c9232f;
}

.cta-button.highlight {
    background-color: #f4a300; /* Gold for specials */
    color: #000;
}

.cta-button.highlight:hover {
    background-color: #d89000;
}

