/* Trade association strip */

.trade-association {
  text-align: center;
  padding: 20px 0;
}

.trade-association-logos {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
.trade-association-logos img{
  max-width: 300px;
}
/* Intro section spacing */
.spain-intro,
.france-intro {
  padding: 50px 20px;
}
/* --- Table of contents (France page) --- */

.france-toc {
  max-width: 1000px;
  margin: 25px auto 30px;
  padding: 14px 18px 16px;
  background: #f7f7f7;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid #e2e2e2;
}

.france-toc-title {
  margin: 0 0 8px;
  
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
}

.france-toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.france-toc-link {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #d0d0d0;
  text-decoration: none;
  color: #333;
  background: #ffffff;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
              box-shadow 0.2s ease, transform 0.1s ease;
  white-space: nowrap;
}

.france-toc-link:hover,
.france-toc-link:focus {
  background-color: #000;
  color: #fff;
  border-color: #000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}

/* Smooth scrolling for anchor jumps */
html {
  scroll-behavior: smooth;
}



.spain-intro-inner,
.france-intro-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* H2 styled like old inline version */
.spain-heading,
.france-heading {
  text-align: center;
  color: #fff;
  font-size: 150%;
  border: 3px solid grey;
  max-width: 360px;
  margin: 0 auto;
  background-color: #000;
  padding: 8px 10px;
}

h2.france-subheading {
  font-size: 140%;
  font-weight: 700;
  margin: 18px 0 10px;
}

/* Layout container */
.spain-intro-layout,
.france-intro-layout {
  max-width: 1000px;
  margin: 25px auto 0;
}


.spain-intro-text p,
.france-intro-text p {
  margin-bottom: 15px;
}

/* Image floated on the left */
.spain-intro-image,
.france-intro-image {
  float: right;
  width: 280px;
  margin-left: 10px;
  margin-bottom: 10px;
}

.spain-intro-image img,
.france-intro-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Clearfix so content below doesn't wrap around the image */
.spain-intro-layout::after,
.france-intro-layout::after {
  content: "";
  display: block;
  clear: both;
}



.service-options {
  padding: 40px 20px;
}

.service-options h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.5em;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-card {
  background-color: #fef3b4;
  border: 1px solid #ccc;
  border-radius: 10px;
  flex: 1 1 300px;
  max-width: 480px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  box-sizing: border-box;
}

.service-card h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 150%;
}

.card-content {
  flex: 1;
}

.card-content p {
  margin-bottom: 1em;
  width: 100%;
  box-sizing: border-box;
}

.card-content p:last-child {
  margin-bottom: 0;
}

.card-action {
  text-align: center;
  margin-top: 24px;
  /* Use margin-top: auto; if you want the button always at the bottom */
}

.quote-btn {
  background-color: #3b49f9;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background 0.2s;
  font-size: 1em;
  min-width: 140px;
}

.quote-btn:hover {
  background-color: #2536c6;
}
/* Removals process section */
.removal-process-section {
  padding: 50px 20px;
}

.removal-process-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* Heading */
.removal-process-heading {
  text-align: center;
  margin-bottom: 30px;
  font-size: 150%;
}

/* Intro text */
.removal-process-intro {
  margin-bottom: 25px;
}

/* Numbered steps */

/* Force markers back no matter what */
ol.removal-process-steps {
  list-style: decimal inside !important;
  padding-left: 0 !important;
  margin: 0 0 30px 0;
  line-height: 1.8;
}

ol.removal-process-steps > li {
  display: list-item !important;   /* KEY if li was flex/block */
}


.removal-process-steps li {
  margin-bottom: 10px;
}

/* Additional paragraphs */
.removal-process-extra {
  margin-bottom: 10px;
}
/* Outer section */
.why-choose-section {
  padding: 50px 20px;
}

/* Inner width constraint */
.why-choose-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* Heading */
.why-choose-heading {
  text-align: center;
  margin-bottom: 30px;
  font-size: 150%;
}

/* TOP: two-column block */
.why-choose-top {
  
  margin-bottom: 30px;
}



.why-choose-top-image {
  float: right;
  width: 280px;
  margin-left: 10px;
  margin-bottom: 10px;
}

.why-choose-top-image img {
  max-width: 100%;
  width: 100%;
  max-width: 360px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.18);
}

/* Text styles */
.why-choose-intro {
  margin-bottom: 20px;
}

.why-choose-list {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 25px;
}

.why-choose-list li {
  margin-bottom: 10px;
}

.why-choose-text {
  margin-bottom: 20px;
}

/* Full-width mistakes box (single column) */
.mistakes-box {
  background: #f7f7f7;
  padding: 20px 25px;
  margin: 20px 0 30px;
  border-left: 4px solid #3b49f9;
  border-radius: 6px;
}

.mistakes-title {
  font-size: 120%;
  margin-bottom: 15px;
  font-weight: bold;
}

/* CTA button */
.why-choose-button {
  text-align: center;
  margin-top: 10px;
}

.quote-btn {
  background-color: #3b49f9;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

.quote-btn:hover {
  background-color: #2d38c8;
}
/* Moving to Spain After Brexit section */
.brexit-section {
  padding: 50px 20px;
}

.brexit-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* Main heading */
.brexit-heading {
  text-align: center;
  margin-bottom: 30px;
  font-size: 150%;
}

/* Subheadings */
.brexit-subheading {
  font-size: 120%;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Content blocks */
.brexit-block {
  margin-bottom: 30px;
}

.brexit-block p {
  margin-bottom: 15px;
}

/* Customs two-column layout */
.brexit-customs-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 10px;
}

.brexit-customs-card {
  flex: 1 1 300px;
  background: #fafafa;
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  padding: 18px 20px;
  box-sizing: border-box;
}

.brexit-card-title {
  font-size: 110%;
  margin-bottom: 12px;
  font-weight: bold;
}

/* Bullet list */
.brexit-list {
  list-style-type: disc;
  padding-left: 20px;
  margin: 10px 0 15px;
}

.brexit-list li {
  margin-bottom: 6px;
}

/* Arriving in Spain section */
.arriving-section {
  padding: 50px 20px;
}

.arriving-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* Heading */
.arriving-heading {
  text-align: center;
  margin-bottom: 25px;
  font-size: 150%;
}

/* Highlight box */
.arriving-box {
  background: #f7f7f7;
  border-left: 4px solid #3b49f9;
  border-radius: 6px;
  padding: 20px 24px;
}

.arriving-box p {
  margin-bottom: 15px;
}

.arriving-box p:last-child {
  margin-bottom: 0;
}

/* ================================
   FAQ SECTION
   ================================ */

.faq-section {
  padding: 50px 20px;
}

.faq-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* Heading – slightly larger than other H2s so it stands out */
.faq-heading {
  text-align: center;
  margin-bottom: 35px;
  font-size: 180% !important;   /* bigger and forced over theme */
  font-weight: 700;
}

/* Accordion container */
.faq-accordion {
  border-top: 1px solid #e1e1e1;
}

/* Single FAQ item */
.faq-item {
  border-bottom: 1px solid #e1e1e1;
}

/* Question row */
button.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #fafafa;
  border: none;
  padding: 18px 20px;
  cursor: pointer;

  font-size: 120% !important;   /* BIGGER text, forced */
  font-weight: 600;
  text-align: left;

  box-sizing: border-box;
  transition: background-color 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
}

/* Hover state */
button.faq-question:hover {
  background-color: #f3f3f3;
}

/* Plus / minus icon */
button.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 10px;
  transition: transform 0.2s ease;
}

/* Active item (open) */
.faq-item.active button.faq-question {
  background-color: #f0f0f0;
}

.faq-item.active button.faq-question::after {
  content: "−";
}

/* Answer container */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  padding: 0 20px;
  box-sizing: border-box;
  transition: max-height 0.25s ease-out, padding 0.25s ease-out;
}

.faq-answer p {
  margin: 14px 0 18px;
  line-height: 1.8;
}

/* When expanded */
.faq-item.active .faq-answer {
  padding: 16px 20px 22px;
}

/* Contact / CTA section for UK–Spain removals */
.contact-removals-section {
  padding: 50px 20px;
  background: #f7f7f7;
  max-width: 1000px;
  margin: 0 auto;              /* light grey to stand out from white */
}

.contact-removals-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Heading – same feel as other H2s */
.contact-removals-heading {
  font-size: 150%;
  margin-bottom: 15px;
}

/* Small intro line */
.contact-removals-subtitle {
  margin-bottom: 10px;
}

/* Phone line – make the number pop */
.contact-removals-phone {
  font-size: 120%;
  font-weight: 700;
  margin: 18px 0 22px;
}

.contact-removals-phone a {
  color: #e60000;                    /* matches previous phone colour */
  text-decoration: none;
}

.contact-removals-phone a:hover {
  text-decoration: underline;
}

/* Button – reusing .quote-btn styling */
.contact-removals-cta {
  margin-bottom: 18px;
}

.contact-removals-btn {
  min-width: 220px;
}

/* Final note */
.contact-removals-note {
  margin-top: 5px;
  font-style: italic;
}
/* ================================
   Removals France to the UK
   ================================ */

.removals-uk-spain-section,
.france-uk-removals-section {
  padding: 50px 20px;
}

.removals-uk-spain-inner,
.france-uk-removals-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* Heading consistent with other H2s */
.removals-uk-spain-heading,
.france-uk-removals-heading {
  text-align: center;
  margin-bottom: 25px;
  font-size: 150%;
}

/* Light panel around text + image */
.removals-uk-spain-panel,
.france-uk-removals-panel {
  background: #f7f7f7;
  border-radius: 6px;
  padding: 24px 24px 28px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}





.removals-uk-spain-text p,
.france-uk-removals-text p {
  margin-bottom: 16px;
}

/* City badges list */
.removals-uk-spain-cities,
.france-uk-removals-cities {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.removals-uk-spain-cities li,
.france-uk-removals-cities li {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 100%;
  white-space: nowrap;
}

/* Image column – indented right */
.removals-uk-spain-image,
.france-uk-removals-image {
  float: right;
  width: 280px;
  margin-left: 10px;
  margin-bottom: 10px;
}

.removals-uk-spain-image img,
.france-uk-removals-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}



/* ================================
   Quality / Eco / Testimonials
   ================================ */

.quality-section {
  padding: 50px 20px;
}

.quality-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* Heading consistent with other H2s */
.quality-heading {
  text-align: center;
  margin-bottom: 30px;
  font-size: 150%;
}

/* Card layout */
.quality-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* Base card style */
.quality-card {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 20px 22px 22px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid #e1e1e1;
  box-sizing: border-box;
}

/* Main card full width */
.quality-card-main {
  flex: 1 1 100%;
  border-top: 3px solid #3b49f9;
}

/* Two secondary cards side by side on desktop */
.quality-card-eco,
.quality-card-testimonials {
  flex: 1 1 calc(50% - 12px);
}

/* Subtitles */
.quality-card-title {
  font-size: 120%;
  margin-bottom: 12px;
  font-weight: 700;
}

/* Paragraph spacing */
.quality-card p {
  margin-bottom: 14px;
  line-height: 1.8;
}

.quality-card p:last-child {
  margin-bottom: 0;
}

/* Optional subtle accents per card (still on-brand) */
.quality-card-eco {
  border-top: 3px solid #2e7d32; /* eco green accent */
}

.quality-card-testimonials {
  border-top: 3px solid #f4b400; /* warm accent for reviews */
}

/* ================================
   Best Places to Live in France
   ================================ */

.france-locations-section {
  padding: 50px 20px;
}

.france-locations-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* Heading consistent with other H2s */
.france-locations-heading {
  text-align: center;
  margin-bottom: 25px;
  font-size: 150%;
}

/* Light panel wrapper */
.france-locations-panel {
  background: #f7f7f7;
  border-radius: 6px;
  padding: 24px 24px 28px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid #e1e1e1;
}

/* Content text */
.france-locations-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

/* Subheading inside section */
.france-locations-subheading {
  font-size: 140%;
  font-weight: 700;
  margin: 18px 0 10px;
}

/* ================================
   Insurance Section
   ================================ */

.insurance-section {
  padding: 50px 20px;
}

.insurance-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.insurance-heading {
  text-align: center;
  margin-bottom: 25px;
  font-size: 150%;
}

/* Light panel */
.insurance-panel {
  background: #f7f7f7;
  border-radius: 6px;
  padding: 24px 24px 28px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid #e1e1e1;
}

.insurance-panel p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.insurance-panel p:last-child {
  margin-bottom: 0;
}

/* ================================
   Why Choose Gentlevan – France
   ================================ */

.why-choose-france-section {
  padding: 50px 20px;
}

.why-choose-france-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.why-choose-france-heading {
  text-align: center;
  margin-bottom: 30px;
  font-size: 150%;
}

/* 🔹 TWO-COLUMN LAYOUT */
.why-choose-france-layout {
  
  margin-bottom: 30px;
}



.why-choose-france-text p {
  margin-bottom: 16px;
  line-height: 1.8;
}

/* Icons list */
.why-choose-france-list {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 20px;
}

.why-choose-france-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 8px;
}

.why-choose-france-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #3b49f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  color: #3b49f9;
  background: #ffffff;
}

/* Image right */
.why-choose-france-image {
  float: right;
  width: 280px;
}

.why-choose-france-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
}

/* 🔹 FULL-WIDTH EXTRA BOX */
.why-choose-france-extra {
  background: #f7f7f7;
  border-left: 4px solid #3b49f9;
  border-radius: 6px;
  padding: 18px 20px 20px;
}

.why-choose-france-subheading {
  font-size: 120%;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ============================================
   Moving to France – Knowledge Section
   ============================================ */

.france-moving-knowledge-section {
  padding: 50px 20px;
}

.france-moving-knowledge-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* Heading */
.france-moving-knowledge-heading {
  text-align: center;
  margin-bottom: 30px;
  font-size: 150%;
}

/* Main panel wrapper */
.france-moving-knowledge-panel {
  background: #f7f7f7;
  padding: 24px 24px 30px;
  border-radius: 6px;
  border: 1px solid #e1e1e1;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.france-moving-knowledge-panel p {
  margin-bottom: 16px;
  line-height: 1.8;
}

/* Subheadings inside the panel */
.france-moving-subheading {
  font-size: 120%;
  font-weight: 700;
  margin: 25px 0 12px;
}

/* Light grey boxed list sections */
.france-moving-box {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  padding: 20px;
  border-radius: 6px;
  margin: 10px 0 20px;
}

.france-moving-box p {
  margin-bottom: 14px;
  line-height: 1.8;
}

/* ============================================
   Key Considerations – Tax & Travel
   ============================================ */

.france-key-considerations-section {
  padding: 50px 20px;
}

.france-key-considerations-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.france-key-considerations-heading {
  text-align: center;
  margin-bottom: 30px;
  font-size: 150%;
}

/* Two-card grid */
.france-key-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

/* Individual card */
.france-key-card {
  flex: 1 1 300px;
  background: #f7f7f7;
  border-radius: 8px;
  padding: 20px 22px 22px;
  border: 1px solid #e1e1e1;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  box-sizing: border-box;
}

.france-key-card-title {
  font-size: 120%;
  font-weight: 700;
  margin-bottom: 12px;
}

.france-key-card p {
  margin-bottom: 14px;
  line-height: 1.8;
}

.france-key-card p:last-child {
  margin-bottom: 0;
}

/* Highlighted tip at bottom */
.france-key-tip {
  background: #eef3ff;
  border-left: 4px solid #3b49f9;
  border-radius: 6px;
  padding: 14px 18px;
}

.france-key-tip p {
  margin: 0;
  line-height: 1.7;
  font-weight: 500;
}
/* ============================================
   Contact CTA – France Page
   ============================================ */

.contact-france-section {
  padding: 50px 20px;
  background: #f7f7f7;
  border-top: 1px solid #e1e1e1;
  margin: 0 auto;              /* light grey to stand out from white */
  max-width: 1000px;
}

.contact-france-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-france-heading {
  font-size: 150%;
  margin-bottom: 18px;
}

.contact-france-text {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 22px;
}

.contact-france-phone {
  color: #e60000;
  font-weight: 700;
  text-decoration: none;
}

.contact-france-phone:hover {
  text-decoration: underline;
}

.contact-france-cta {
  margin-top: 15px;
}

.contact-france-btn {
  min-width: 220px;
}




/* Responsive: stack columns on smaller screens */
@media (max-width: 900px) {
  
  
  .why-choose-top {
    flex-direction: column;
  }

  .why-choose-top-image {
    justify-content: center;
    
  }

  .why-choose-top-image img {
    max-width: 500px;
  }
  .brexit-customs-grid {
    flex-direction: column;
  }
  .removals-uk-spain-layout,
  .france-uk-removals-layout {
    flex-direction: column;
  }

  .removals-uk-spain-image,
  .france-uk-removals-image {
    justify-content: center;
    margin-top: 20px;
    float: none;
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
  }
  .why-choose-france-layout {
    flex-direction: column;
  }

  .why-choose-france-image {
    justify-content: center;
    margin-top: 20px;
  }
  
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
  .trade-association-logos {
    flex-direction: column;
  }

  .trade-association-logos img {
    max-width: 200px;
  }

  .spain-intro-image,
  .france-intro-image {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }

  .spain-heading,
  .france-heading {
    max-width: 100%;
  }

  .arriving-box {
    padding: 18px 16px;
  }

  .faq-heading {
    font-size: 150% !important;
  }

  button.faq-question {
    padding: 16px 16px;
    font-size: 1.1rem !important;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-item.active .faq-answer {
    padding: 14px 16px 18px;
  }

  .quality-card-main,
  .quality-card-eco,
  .quality-card-testimonials {
    flex: 1 1 100%;
  }

  .france-locations-panel {
    padding: 20px 16px 22px;
  }

  .france-locations-heading {
    font-size: 140%;
  }

  .insurance-panel {
    padding: 20px 16px 22px;
  }

  .insurance-heading {
    font-size: 140%;
  }

  .france-moving-knowledge-panel {
    padding: 20px 16px 24px;
  }

  .france-moving-knowledge-heading {
    font-size: 140%;
  }

  .france-moving-subheading {
    font-size: 115%;
  }

  .france-key-cards {
    flex-direction: column;
  }

  .france-key-considerations-heading {
    font-size: 140%;
  }

  .france-toc {
    padding: 12px 10px 14px;
  }

  /* Let TOC wrap on small screens – NOT nowrap */
  .france-toc-list {
    flex-wrap: wrap;
  }
}