.gradient_section_1 {
  background: linear-gradient(135deg, #b87333 0%, #8b5a2b 100%);
  color: white;
  padding: 12px 0;
  text-align: center;
  position: relative;
  z-index: 1000;
  font-size: 0.9rem;
  font-weight: 600;
}

.styled_element_2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.styled_element_3 {
  margin: 0;
}

.styled_element_4 {
  margin: 0;
}

/* === FAQ SECTION STYLING === */
.faq-section {
  background: var(--bg-cream);
}

.faq-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-section-desc {
  color: #666;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.faq-section-group {
  margin-bottom: 40px;
}

.faq-group-title {
  color: #b87333;
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #b87333;
}

/* === FAQ Container and Basic Items === */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-content {
  padding: 1.5rem;
  border-left: 4px solid var(--accent-copper);
}

.faq-question {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.faq-answer {
  margin: 0;
  color: #666;
  line-height: 1.6;
}
.faq-answer a {
  color: var(--accent-copper);
}

/* === FAQ Accordion Styles === */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 30px;
}

.faq-category-header {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-accordion-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-accordion-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.faq-accordion-item.active {
  box-shadow: 0 5px 20px rgba(184, 115, 51, 0.2);
  border: 2px solid #b87333;
}

.faq-accordion-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.faq-accordion-header:hover {
  background: #f8f8f8;
}

.faq-accordion-item.active .faq-accordion-header {
  background: #fef5ed;
  border-bottom: 1px solid #e0e0e0;
}

.faq-question-text {
  color: #1a237e;
  font-size: 17px;
  font-weight: 600;
  flex: 1;
  padding-right: 20px;
}

.faq-accordion-icon {
  color: #b87333;
  font-size: 24px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-accordion-item.active .faq-accordion-content {
  max-height: 1000px;
}

.faq-answer-text {
  padding: 20px;
  color: #666;
  line-height: 1.7;
}

/* === FAQ Special Elements === */
.faq-highlight {
  background: linear-gradient(90deg, #fff4e6 0%, #fff 100%);
  border-left: 4px solid #b87333;
  padding: 15px;
  margin: 15px 20px;
  border-radius: 5px;
}

.faq-cta-inline {
  display: inline-block;
  background: #b87333;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: all 0.3s ease;
}
.faq-cta-inline:hover {
  background: #a0622d;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(184, 115, 51, 0.3);
}

.faq-top-questions {
  background: linear-gradient(135deg, #fff9f3 0%, #fff 100%);
  border: 2px solid #b87333;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 40px;
}

.faq-top-badge {
  display: inline-block;
  background: #b87333;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === Mobile Responsive Styles === */
@media (max-width: 768px) {
  /* FAQ improvements */
  .faq-container {
    padding: 0 1rem;
  }
  .faq-content {
    padding: 1rem;
  }
  .faq-question {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  .faq-accordion {
    padding: 0 1rem;
  }
  .faq-question-text {
    font-size: 15px;
  }
  .faq-accordion-header {
    padding: 15px;
  }
  .faq-answer-text {
    padding: 15px;
  }
  .faq-top-questions {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .faq-content {
    padding: 0.75rem;
  }
  .faq-question {
    font-size: 1rem;
  }
  .faq-question-text {
    font-size: 14px;
  }
  .faq-section-desc {
    font-size: 16px;
  }
  .faq-accordion-header {
    padding: 12px;
  }
}
@media (max-width: 375px) {
  .faq-item {
    margin-bottom: 0.75rem;
  }
  .faq-accordion-item {
    margin-bottom: 8px;
  }
  .faq-top-questions {
    padding: 15px;
  }
}
/* === Proof Compact Container (Patrick van Drielen style) === */
.proof-compact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.proof-compact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.proof-compact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.proof-compact-avatar {
  flex-shrink: 0;
}
.proof-compact-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent-copper);
}

.proof-compact-content {
  flex: 1;
}

.proof-compact-stars {
  color: #FFD700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.proof-compact-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}

.proof-compact-name {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
  font-weight: 500;
}
.proof-compact-name span {
  opacity: 0.7;
  font-size: 0.8rem;
}

.proof-compact-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, #e9ecef, transparent);
  flex-shrink: 0;
}

/* === Proof Inline (Featured Inline Testimonial) === */
.proof-inline-section {
  background: var(--bg-white);
  padding: 40px 0;
}

.proof-inline-container {
  max-width: 800px;
}

.proof-inline {
  background: linear-gradient(135deg, var(--bg-cream) 0%, white 100%);
  border-left: 4px solid var(--accent-copper);
  padding: 2rem 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(184, 115, 51, 0.1);
  text-align: center;
}

.proof-inline-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.proof-inline-profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-copper);
}

.proof-inline-info {
  text-align: left;
}

.proof-inline-name {
  font-weight: 700;
  color: var(--primary-navy);
  font-size: 1.1rem;
}

.proof-inline-title {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.proof-inline-stars {
  color: var(--accent-copper);
  font-size: 1.2rem;
}

.proof-inline-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.6;
}
.proof-inline-quote strong {
  font-weight: 700;
}

/* === Testimonial Grid === */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--accent-copper);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-copper);
}

.testimonial-info {
  flex: 1;
}
.testimonial-info h4 {
  color: var(--primary-navy);
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.star-rating {
  margin-bottom: 0.5rem;
}
.star-rating .stars {
  color: #FFD700;
  font-size: 1rem;
}
.star-rating .stars i {
  margin-right: 2px;
}

.profession {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  font-size: 0.95rem;
}

.result-highlight {
  background: rgba(184, 115, 51, 0.1);
  border-radius: 8px;
  padding: 1rem;
  border-left: 4px solid var(--accent-copper);
}
.result-highlight strong {
  color: var(--accent-copper);
  font-weight: 600;
}

/* === Inline Testimonial (from index.html) === */
.inline-testimonial {
  background: linear-gradient(135deg, var(--bg-cream) 0%, white 100%);
  border-left: 4px solid var(--accent-copper);
  padding: 2rem 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(184, 115, 51, 0.1);
  text-align: center;
}
.inline-testimonial .testimonial-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.inline-testimonial .testimonial-profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-copper);
}
.inline-testimonial .testimonial-profile .profile-info {
  text-align: left;
}
.inline-testimonial .testimonial-profile .profile-info .name {
  font-weight: 700;
  color: var(--primary-navy);
  font-size: 1.1rem;
}
.inline-testimonial .testimonial-profile .profile-info .title {
  color: var(--text-gray);
  font-size: 0.9rem;
}
.inline-testimonial .testimonial-profile .profile-info .stars {
  color: var(--accent-copper);
  font-size: 1.2rem;
}
.inline-testimonial blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.6;
}

/* === Featured Testimonials (from reviews.html) === */
.featured-testimonials .testimonial-featured {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-left: 6px solid var(--accent-copper);
}
.featured-testimonials .testimonial-featured.reverse {
  grid-template-columns: 1fr 200px;
}
.featured-testimonials .testimonial-featured.reverse .testimonial-image {
  order: 2;
}
.featured-testimonials .testimonial-featured.reverse .testimonial-content {
  order: 1;
}
.featured-testimonials .testimonial-image {
  text-align: center;
}
.featured-testimonials .testimonial-image .testimonial-avatar-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent-copper);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.featured-testimonials .testimonial-content h3 {
  color: var(--primary-navy);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.featured-testimonials .testimonial-content .profession {
  color: var(--accent-copper);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.featured-testimonials .testimonial-content blockquote {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
}
.featured-testimonials .testimonial-content .result-box {
  background: rgba(184, 115, 51, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  border-left: 4px solid var(--accent-copper);
}
.featured-testimonials .testimonial-content .result-box h4 {
  color: var(--accent-copper);
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 700;
}
.featured-testimonials .testimonial-content .result-box p {
  margin: 0;
  color: var(--text-dark);
  font-weight: 500;
}

/* === Proof Full (Comprehensive Client Story) === */
.proof-full-card {
  background: var(--bg-cream);
  padding: 2rem;
  border-radius: 15px;
  margin: 3rem 0;
  border-left: 4px solid var(--accent-copper);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.proof-full-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.proof-full-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.proof-full-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.proof-full-info {
  flex: 1;
}
.proof-full-info h4 {
  margin: 0;
  color: var(--primary-navy);
  font-size: 1.2rem;
  font-weight: 700;
}
.proof-full-info .proof-full-role {
  margin: 0;
  color: var(--text-gray);
  font-size: 0.9rem;
  font-weight: 500;
}

.proof-full-stars {
  color: #ffd700;
  margin-top: 0.25rem;
  font-size: 1rem;
}
.proof-full-stars i {
  margin-right: 1px;
}

.proof-full-quote {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
  font-size: 1.1rem;
}
.proof-full-quote strong {
  font-weight: 700;
  color: var(--primary-navy);
}

.proof-full-highlight {
  margin-top: 1rem;
  padding: 0.75rem;
  background: rgba(184, 115, 51, 0.1);
  border-radius: 8px;
  border-left: 3px solid var(--accent-copper);
}
.proof-full-highlight strong {
  color: var(--accent-copper);
  font-weight: 600;
}
.proof-full-highlight span {
  color: var(--text-gray);
  font-weight: 500;
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
  .proof-compact-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .proof-compact-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, #e9ecef, transparent);
  }
  .proof-compact-card {
    width: 100%;
    max-width: 400px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .testimonial-card {
    padding: 1.5rem;
  }
  .testimonial-header {
    gap: 0.75rem;
  }
  .testimonial-avatar img {
    width: 50px;
    height: 50px;
  }
  .featured-testimonials .testimonial-featured {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  .featured-testimonials .testimonial-featured.reverse {
    grid-template-columns: 1fr;
  }
  .featured-testimonials .testimonial-featured.reverse .testimonial-image {
    order: 1;
  }
  .featured-testimonials .testimonial-featured.reverse .testimonial-content {
    order: 2;
  }
  .featured-testimonials .testimonial-image .testimonial-avatar-img {
    width: 120px;
    height: 120px;
  }
  .inline-testimonial {
    padding: 1.5rem;
  }
  .inline-testimonial .testimonial-profile {
    flex-direction: column;
    gap: 1rem;
  }
  .inline-testimonial .testimonial-profile .profile-info {
    text-align: center;
  }
  .proof-inline {
    padding: 1.5rem;
  }
  .proof-inline-profile {
    flex-direction: column;
    gap: 1rem;
  }
  .proof-inline-info {
    text-align: center;
  }
  .proof-full-card {
    padding: 1.5rem;
    margin: 2rem 0;
  }
  .proof-full-header {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  .proof-full-avatar {
    width: 50px;
    height: 50px;
  }
  .proof-full-info h4 {
    font-size: 1.1rem;
  }
  .proof-full-quote {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .proof-compact-card {
    padding: 1rem;
    gap: 0.75rem;
  }
  .proof-compact-avatar img {
    width: 40px;
    height: 40px;
  }
  .proof-compact-text {
    font-size: 0.9rem;
  }
  .proof-compact-name {
    font-size: 0.8rem;
  }
  .testimonial-card {
    padding: 1rem;
  }
  .featured-testimonials .testimonial-featured {
    padding: 1.5rem;
  }
  .featured-testimonials .testimonial-image .testimonial-avatar-img {
    width: 100px;
    height: 100px;
  }
  .proof-full-card {
    padding: 1rem;
    margin: 1.5rem 0;
  }
  .proof-full-header {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .proof-full-avatar {
    width: 45px;
    height: 45px;
  }
  .proof-full-info h4 {
    font-size: 1rem;
  }
  .proof-full-quote {
    font-size: 0.95rem;
  }
  .proof-full-highlight {
    padding: 0.5rem;
  }
}
/* Hero Section - Author Authority styles */
.boeken_hero {
  min-height: 85vh;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(26, 35, 126, 0.85), rgba(26, 35, 126, 0.85)), url("/assets/images/backgrounds/books-knowledge.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.boeken_gradient_1 {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(184, 115, 51, 0.1) 35px, rgba(184, 115, 51, 0.1) 70px);
}

.boeken_container {
  position: relative;
  z-index: 10;
  padding: 80px 20px;
}

.boeken_grid_2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.boeken_styled_3 {
  text-align: left;
}

.boeken_card_4 {
  display: inline-block;
  background: rgba(184, 115, 51, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--accent-copper);
}

.boeken_styled_5 {
  color: var(--accent-copper);
  font-size: 1.1rem;
  margin: 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.boeken_hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  color: white;
  line-height: 1.1;
}

.boeken_hero-description {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.boeken_styled_6 {
  color: var(--accent-copper);
  font-weight: 600;
}

.boeken_styled_7 {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.boeken_card_8, .boeken_card_11, .boeken_card_14 {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(184, 115, 51, 0.3);
  flex: 1;
  min-width: 140px;
}

.boeken_styled_9, .boeken_styled_12, .boeken_styled_15 {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--accent-copper);
  margin-bottom: 0.5rem;
}

.boeken_styled_10, .boeken_styled_13, .boeken_styled_16 {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.boeken_styled_17 {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.boeken_cta-button {
  font-size: 1.2rem;
  padding: 1.2rem 2.5rem;
}
.boeken_cta-button.primary {
  background: var(--accent-copper);
  border: none;
}
.boeken_cta-button.secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
@keyframes scroll {
  0% {
    top: 10px;
    opacity: 1;
  }
  50% {
    top: 20px;
    opacity: 0.5;
  }
  100% {
    top: 10px;
    opacity: 1;
  }
}
@media (max-width: 968px) {
  .hero .container > div {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
  .hero .container > div > div:first-child {
    text-align: center !important;
  }
  .hero .container > div > div:last-child {
    margin-top: 3rem;
  }
  .hero .container > div > div:last-child > div {
    max-width: 350px;
    margin: 0 auto;
  }
  .boeken_grid_2 {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .boeken_styled_3 {
    text-align: center;
  }
  .boeken_styled_7 {
    justify-content: center;
  }
  .boeken_styled_17 {
    justify-content: center;
  }
}

/*# sourceMappingURL=main2.css.map */
