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

body {
  font-family: 'Helvetica Neue', sans-serif;
  color: #111;
  background: #fff;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

/* Push content down so it's not hidden behind fixed header */
body {
  padding-top: 80px; /* Match header height */
}


.hero-clean {
  background: #fdfdfd;
  padding: 6rem 2rem 5rem;
  text-align: center;
}

.hero-inner {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.hero-logo {
  width: 700px;
  height: auto;
  margin-bottom: 1rem;
}

.hero-clean h1 {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 600;
  color: #111;
  letter-spacing: -0.5px;
  margin-top: 0.5rem;
}

.hero-clean p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.btn-soft {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 0.75rem 1.6rem;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-soft:hover {
  background: #333;
}


.scrolling-text {
  background: #111;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}


.about-me-section {
  background: #fdfdfd;
  padding: 6rem 2rem;
  margin-top: 2rem;
}

/* Reduce gap between stacked sections on mobile */
.about-me-section,
.what-we-do {
  padding-bottom: 3rem;
  padding-top: 3rem;
}

@media (max-width: 768px) {
  .about-me-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  .about-me-section {
    padding-bottom: 2rem;
  }

  .what-we-do {
    padding-top: 2rem;
  }

  .counsellor-photo {
    margin-bottom: 0; /* prevent extra spacing under image */
  }

  .about-me-text p:last-of-type {
    margin-bottom: 0;
  }
}


.about-me-wrapper {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

/* TEXT BLOCK */
.about-me-text {
  flex: 1;
  text-align: left;
}

.about-me-text h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.3;
  color: #111;
}

.about-me-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 1.5rem;
}

/* IMAGE BLOCK */
.about-me-image {
  width: 100%;
  max-width: 100%;
  flex: 1;
}

.counsellor-photo {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* DESKTOP: side-by-side layout */
@media (min-width: 992px) {
  .about-me-wrapper {
    flex-direction: row;
    align-items: stretch;
  }

  .about-me-text {
    padding-right: 3rem;
  }

  .about-me-image {
    max-width: 250px;
  }

  .counsellor-photo {
    height: 100%;
    max-height: none;
    border-radius: 12px;
  }
}
@media (max-width: 991px) {
  .counsellor-photo {
    width: 80%;
    max-width: 200px;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto; /* centers it */
    display: block;
  }
}

.about {
  padding: 6rem 2rem;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

.work {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.work h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.work-item {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1.5rem;
  transition: box-shadow 0.3s ease;
  text-align: left;
}

.work-item:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}


.work-thumb {
  background-size: cover;
  background-position: center;
  height: 180px;
  border-radius: 6px;
  margin-bottom: 1rem;
}


.approach {
  background: #f9f9f9;
  padding: 6rem 2rem;
  text-align: center;
}

.approach h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
}

.approach-steps h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.approach-steps p {
  color: #555;
}

.what-we-do {
  padding: 6rem 2rem;
  background: #fff;
  text-align: center;
}

.what-we-do h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 4rem;
  color: #111;
}

.pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 0 auto;
  text-align: left;
  max-width: 1000px;
}

/* Pillar items */
.pillar-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pillar-image {
  width: 100%;
  height: 200px; /* or 250px / 300px */
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}


.pillar-item.wide {
  grid-column: 1 / -1;
}

.icon-space {
  width: 40px;
  height: 40px;
  background: #eee;
  border-radius: 8px;
}

.pillar-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #111;
}

.pillar-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
}


.text-button {
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  transition: color 0.2s ease;
  padding-bottom: 2rem;
}

.text-button:hover {
  text-decoration: underline;
  color: #000;
}

/* Divider */
.pillar-divider {
  background: #eee;
  width: 1px;
  height: 100%;
  display: none;
}

/* Responsive layout */
@media (min-width: 768px) {
  .pillar-grid {
    grid-template-columns: 1fr 1px 1fr;
    grid-template-rows: auto auto;
    gap: 3rem 2rem;
  }

  .pillar-item.wide {
    grid-column: 1 / 4;
  }

  .pillar-divider {
    display: block;
    align-self: stretch;
  }
}


.timeline {
  padding: 6rem 2rem;
  background: #f6f6f6;
  text-align: center;
}

.timeline h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-steps strong {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.timeline-steps p {
  color: #555;
  font-size: 0.95rem;
}

/* === Rounded CTA Footer === */
.cta-rounded-footer {
  background: #000;
  color: #fff;
  margin: 6rem 2rem;
  border-radius: 40px;
  padding: 4rem 3rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}

.footer-left {
  max-width: 400px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 1.5rem;
}

.footer-left p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #ccc;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #000;
  padding: 0.9rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.footer-btn:hover {
  background: #f5f5f5;
}

.footer-right h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-right li {
  margin-bottom: 0.5rem;
}

.footer-right a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-right a:hover {
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-rounded-footer {
    margin: 4rem 1rem;
    padding: 3rem 2rem;
  }
}


/* === Footer Base === */
.site-footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #eee;
  background: #fafafa;
}

.trust-process {
  padding: 0rem 2rem;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.trust-process h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 1rem;
  color: #111;
}

.trust-process p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.trust-list {
  padding-left: 1.2rem;
  margin-top: 1rem;
}

.trust-list li {
  margin-bottom: 0.6rem;
  list-style: disc;
  color: #333;
  font-size: 1.05rem;
}

.spaced-img {
  margin-top: 2rem;
}

.image-bottom-space {
  margin-bottom: 1.5rem;
}

/* Divider (hidden by default) */
.trust-divider {
  display: none;
}

.trust-bubble {
  background: #f5f5f5;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  margin: 4rem auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .trust-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .trust-left,
  .trust-right {
    flex: 1;
  }

  .trust-divider {
    width: 2px;
    background: #ddd;
    margin: 0 2rem;
    transform: translateX(-30px);
  }
}


@media (min-width: 768px) {
  .trust-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr; /* Left | Divider | Right */
    column-gap: 4rem;
    align-items: start;
  }

  .trust-left {
    grid-column: 1;
  }

  .trust-divider {
    display: block;
    grid-column: 2;
    background: #eee;
    width: 1px;
    height: 100%;
  }

  .trust-right {
    grid-column: 3;
  }
}

.button-spaced {
  display: inline-block;
  margin-top: 1.5rem; /* adjust spacing as needed */
}


@keyframes underline-slide-in {
  to {
    left: 0;
  }
}

.underline-wrapper {
  display: block;
  position: relative;
  height: 1px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.underline-parallax {
  display: block;
  position: absolute;
  left: -100%;
  width: 200%;
  height: 4px;
  background: linear-gradient(to right, #111, transparent 60%);
  animation: underline-slide-in 1.2s ease-out forwards;
}
@media (min-width: 768px) {
  .underline-wrapper {
    display: none;
  }
}


@keyframes underline-slide-in {
  to {
    left: 0;
  }
}

.timeline-section {
  padding: 6rem 2rem;
  background: #fff;
  text-align: center;
}
.timeline-section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 4rem;
  color: #111;
}
.timeline-container {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding: 0 1rem;
}
.timeline-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: #ccc;
}
.timeline-item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 2rem 0;
  position: relative;
  width: 100%;
}
.timeline-item.right {
  flex-direction: row-reverse;
}
.timeline-icon {
  background: #111;
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
}
.timeline-icon span {
  margin-left: 4px;
  font-size: 0.9rem;
}
.timeline-content {
  background: #f6f6f6;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  max-width: 300px;
  text-align: left;
}
.timeline-item.right .timeline-content {
  text-align: right;
}
.timeline-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  color: #111;
}
.timeline-content p {
  margin: 0;
  font-size: 1rem;
  color: #444;
}

/* Animation */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Contact Section */
.contact-section {
  padding: 6rem 2rem;
  background: #fff;
}

.contact-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-wrapper h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-wrapper p {
  margin-bottom: 2.5rem;
  color: #444;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form label {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #888;
}

.contact-form button {
  align-self: flex-start;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #333;
}
/* === BASE === */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.7;
  font-size: 1.05rem;
}


.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* === SECTION SPACING === */
section {
  padding: 6rem 2rem;
}

.section-divider {
  border-top: 1px solid #eee;
  margin: 0 auto;
  max-width: 1100px;
}

/* === ABOUT SECTION === */
.about-content-section {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.about-block h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.about-block p {
  color: #444;
  margin-bottom: 1.5rem;
}

/* === QUALIFICATIONS SECTION === */
.about-qualifications {
  background: #f9f9f9;
}

.about-qualifications h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.qualifications-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.qualifications-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  color: #333;
}

.qualifications-list li i {
  font-size: 1.3rem;
  color: #111;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.logo {
  text-decoration: none;
  color: inherit;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo:visited {
  color: inherit;
}

.logo:hover {
  text-decoration: none;
}
/* === MOBILE BURGER MENU === */
.burger-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1001;
  color: #111;
}

#mobileNav {
  display: none;
  flex-direction: column;
  position: fixed; /* ✅ changed from sticky */
  top: 4.5rem; /* below the sticky header */
  left: 0;
  width: 100%;
  max-height: calc(100vh - 4.5rem); /* ✅ enable scrolling if needed */
  background: #fff;
  padding: 1rem 2rem;
  border-top: 1px solid #eee;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  z-index: 999;
  overflow-y: auto; /* ✅ allow scroll inside menu */
  animation: slideDown 0.3s ease forwards;
}


#mobileNav a {
  padding: 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  color: #222;
  border-bottom: 1px solid #f0f0f0;
}

/* Open state */
#mobileNav.open {
  display: flex;
}

/* Only show on small screens */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .burger-icon {
    display: block;
  }
}

/* Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.black-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.black-btn .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.black-btn:hover {
  background-color: #333;
}

.black-btn:hover .arrow {
  transform: translateX(5px);
}
/* === NEW ABOUT PAGE SECTIONS === */
.about-intro,
.about-client-focus,
.about-areas-supported,
.about-clinical-approach,
.about-encouragement {
  padding: 6rem 2rem;
  background: #fff;
}

.about-intro h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
  color: #111;
}

.about-intro p,
.about-client-focus p,
.about-clinical-approach p,
.about-encouragement p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.about-client-focus h2,
.about-areas-supported h2,
.about-clinical-approach h2,
.about-encouragement h2 {
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 600;
  color: #111;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Multi-column support areas list */
.multi-column-list {
  columns: 2;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 1.2rem;
  list-style: none;
}

.multi-column-list li {
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
  color: #333;
}

@media (max-width: 768px) {
  .multi-column-list {
    columns: 1;
    padding-left: 1rem;
  }
}

/* Encouragement CTA with button */
.about-encouragement .btn-soft {
  margin-top: 2rem;
  display: inline-block;
}
.about-clinical-approach h2 {
  font-size: clamp(2rem, 5vw, 2.6rem);
  margin-bottom: 1.5rem;
  color: #111;
}
.trust-left p,
.trust-right p {
  margin-bottom: 1.5rem;
}
/* === HOW IT WORKS PAGE STYLES === */

.howitworks-hero {
  padding: 6rem 2rem 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.howitworks-hero h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  margin-bottom: 1rem;
  font-weight: 700;
  color: #111;
}

.howitworks-hero p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.howitworks-steps {
  padding: 4rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.step-icon {
  font-size: 2.2rem;
  background: #111;
  color: #fff;
  padding: 1rem;
  border-radius: 50%;
  min-width: 56px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #111;
}

.step-content p {
  color: #444;
  line-height: 1.6;
}

.section-divider {
  border-top: 1px solid #eee;
  margin: 0 auto;
  max-width: 1000px;
}

.howitworks-info {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.howitworks-info h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.howitworks-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-icon {
    margin-bottom: 1rem;
  }
}
.trust-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

/* Optional: constrain height to reinforce landscape shape */
.trust-image.landscape {
  aspect-ratio: 16 / 9;
  max-height: 250px;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}

.icon-list li {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  line-height: 1.5;
}

.icon-list i {
  color: #000; /* Black icons */
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.btn-soft {
  display: inline-block;
  background: #f0f0f0;
  color: #111;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: background 0.2s ease;
  margin-top: 3rem; /* <-- Increased spacing from list */
}

.btn-soft:hover {
  background: #e0e0e0;
}

/* === CONTACT SECTION WRAPPER === */
.contact-section {
  background: #fdfdfd;
  padding: 6rem 2rem;
}

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.contact-wrapper h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-wrapper .subtext {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}

/* === FLEX LAYOUT === */
.contact-flex {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
  position: relative;
}

/* Divider line (hidden on mobile) */
.contact-flex::before {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #e0e0e0;
}

@media (min-width: 768px) {
  .contact-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
  }

  .contact-flex::before {
    display: block;
  }

  .contact-details,
  .contact-form {
    width: 48%;
  }
}

/* === CONTACT DETAILS PANEL === */
.contact-details {
  background: #fff;
  border: 1px solid #eee;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  text-align: left;
}

.contact-line {
  margin-bottom: 1.8rem;
}

.contact-line:last-child {
  margin-bottom: 0;
}

.contact-line .label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.contact-line a,
.contact-line p {
  font-size: 1.1rem;
  color: #222;
  text-decoration: none;
  margin: 0;
}

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

/* === CONTACT FORM === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  color: #111;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #aaa;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background: #111;
  color: #fff;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #333;
}
.contact-line .label i {
  margin-right: 0.5rem;
  color: #002f5f;
  font-size: 0.9rem;
  vertical-align: middle;
}

/* ============ Cookie Consent styles ============ */
:root{
  --cc-bg: #ffffff;
  --cc-text: #222222;
  --cc-muted: #666666;
  --cc-border: #e8e8ef;
  --cc-primary: var(--primary, #7c3aed);
  --cc-primary-contrast: #ffffff;
  --cc-shadow: 0 10px 30px rgba(0,0,0,0.10);
  --cc-radius: 14px;
}

/* Banner */
.cc-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: var(--cc-bg);
  color: var(--cc-text);
  border: 1px solid var(--cc-border);
  border-radius: var(--cc-radius);
  box-shadow: var(--cc-shadow);
  padding: 16px;
}
.cc-banner.hidden{ display:none; }
.cc-inner{
  display: grid;
  gap: 12px;
  align-items: center;
}
@media (min-width: 720px){
  .cc-inner{ grid-template-columns: 1fr auto; gap: 18px; }
}
.cc-copy strong{ display:block; margin-bottom:6px; font-weight:700; }
.cc-copy p{ margin:0; color: var(--cc-muted); line-height:1.5; }
.cc-copy a{ color: var(--cc-primary); text-decoration: underline; }

.cc-actions{ display:flex; gap:10px; justify-content:flex-end; flex-wrap:wrap; }
.cc-btn{
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  border: 1px solid var(--cc-border);
  background: #fff;
  cursor: pointer;
}
.cc-btn:focus{ outline: 2px solid var(--cc-primary); outline-offset: 2px; }
.cc-btn-primary{ background: var(--cc-primary); color: var(--cc-primary-contrast); border-color: var(--cc-primary); }
.cc-btn-outline{ background: transparent; }
.cc-btn-secondary{ background: #f6f6fb; }

/* Modal */
.cc-modal{ position: fixed; inset: 0; z-index: 10000; display: none; }
.cc-modal.open{ display:block; }
.cc-modal-backdrop{ position:absolute; inset:0; background: rgba(15, 18, 32, 0.45); }
.cc-modal-card{
  position: relative; margin: 6vh auto 0; max-width: 680px;
  background: var(--cc-bg); color: var(--cc-text);
  border: 1px solid var(--cc-border);
  border-radius: 18px; box-shadow: var(--cc-shadow);
  padding: 16px 16px 12px;
}
@media (min-width: 720px){ .cc-modal-card{ padding: 18px 20px 16px; } }
.cc-modal-header{
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  border-bottom: 1px solid var(--cc-border); padding-bottom: 10px;
}
.cc-modal-header h3{ margin:0; font-size: 1.1rem; }
.cc-close{ background: transparent; border: 0; font-size: 22px; line-height: 1; cursor: pointer; }

.cc-modal-body{ padding: 12px 0; }
.cc-group{ border-bottom: 1px dashed var(--cc-border); padding: 12px 0; }
.cc-row{ display:flex; align-items:center; justify-content:space-between; gap:14px; }
.cc-col strong{ display:block; margin-bottom:4px; }
.cc-col p{ margin:0; color: var(--cc-muted); }

.cc-note{ margin: 12px 0 0; color: var(--cc-muted); }
.cc-modal-footer{ display:flex; justify-content:flex-end; gap:10px; padding-top: 12px; }

/* Switch */
.cc-switch{ position: relative; display: inline-flex; align-items: center; }
.cc-switch input{ position:absolute; opacity:0; pointer-events:none; }
.cc-switch-ui{
  display:inline-block; width:46px; height:28px; border-radius: 999px;
  background:#e9e9f2; position:relative; transition: background .2s ease;
  border:1px solid var(--cc-border);
}
.cc-switch-ui::after{
  content:""; position:absolute; top:50%; left:4px; width:20px; height:20px;
  background:#fff; border-radius:50%; transform: translateY(-50%); transition: left .2s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.cc-switch input:checked + .cc-switch-ui{ background: var(--cc-primary); border-color: var(--cc-primary); }
.cc-switch input:checked + .cc-switch-ui::after{ left:22px; }

/* Footer legal line */
.site-footer .footer-legal{ margin-top: 6px; font-size: .95rem; color: var(--cc-muted); }
.site-footer .footer-legal a{ color: inherit; text-decoration: underline; }

/************* PRIVACY / LEGAL PAGE *************/
.container.article {
  max-width: 880px;
  margin: 48px auto;
  padding: 0 16px;
  background: #fff;
  color: #333;
  line-height: 1.7;
}

.container.article h1 {
  font-size: clamp(1.8rem, 2.2vw, 2.4rem);
  margin-bottom: 10px;
  line-height: 1.2;
}

.container.article > p:first-of-type {
  color: #666;
  font-size: .95rem;
  margin-bottom: 24px;
}

.container.article h2 {
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--primary, #7c3aed);
}

.container.article p {
  margin: 8px 0 14px;
}

.container.article ul {
  margin: 8px 0 18px 20px;
  list-style: disc;
}

.container.article li {
  margin: 4px 0;
}

.container.article a {
  color: var(--primary, #7c3aed53);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.container.article a:hover {
  text-decoration-thickness: 2px;
}

/* footer legal line consistency */
.site-footer .footer-legal {
  margin-top: 6px;
  font-size: .95rem;
  color: #666;
}
.site-footer .footer-legal a {
  color: inherit;
  text-decoration: underline;
}

/* optional: make the page easier to print */
@media print {
  #shared-header,
  .site-footer { display:none !important; }
  .container.article { max-width: 100%; margin: 0; }
}
