<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
 * Wind-Velox - Cabinet de Conseil Financier
 * Feuille de style principale
 */

/* ----- RESET ET BASE ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  font-family: 'Georgia', serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #333;
  background-color: #f9f7f2;
  overflow-x: hidden;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #1a5276;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #2980b9;
}

ul, ol {
  list-style-position: inside;
  margin-bottom: 2rem;
}

ul li, ol li {
  margin-bottom: 0.8rem;
}

/* ----- TYPOGRAPHIE ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #2c3e50;
  line-height: 1.3;
}

h1 {
  font-size: 4.2rem;
  margin-bottom: 3rem;
}

h2 {
  font-size: 3.6rem;
  position: relative;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2.0rem;
}

p {
  margin-bottom: 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header p {
  font-size: 1.8rem;
  max-width: 70rem;
  margin: 0 auto;
  color: #555;
}

.section-divider {
  width: 8rem;
  height: 0.3rem;
  background-color: #1a5276;
  margin: 2rem auto 3rem;
  position: relative;
}

.section-divider::before, .section-divider::after {
  content: '';
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #1a5276;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.section-divider::before {
  left: -1.2rem;
}

.section-divider::after {
  right: -1.2rem;
}

.section-header.left-aligned {
  text-align: left;
}

.section-header.left-aligned .section-divider {
  margin: 2rem 0 3rem;
}

/* ----- LAYOUT ----- */
.container {
  width: 90%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 8rem 0;
}

/* ----- BOUTONS ----- */
.btn-primary, .btn-secondary, .btn-tertiary {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border-radius: 0.4rem;
  font-family: 'Georgia', serif;
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: #1a5276;
  color: #fff;
  box-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #154360;
  color: #fff;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.5rem 0.8rem rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: #1a5276;
  border: 0.2rem solid #1a5276;
}

.btn-secondary:hover {
  background-color: rgba(26, 82, 118, 0.1);
  color: #1a5276;
  transform: translateY(-0.2rem);
}

.btn-tertiary {
  background-color: transparent;
  color: #666;
  text-decoration: underline;
  padding: 0.8rem 1.6rem;
}

.btn-tertiary:hover {
  color: #1a5276;
}

.full-width {
  width: 100%;
}

/* ----- HEADER ----- */
.site-header {
  background-color: #fff;
  padding: 1.5rem 0;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 0.2rem solid #e7dec8;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 5rem;
  height: auto;
  margin-right: 1.2rem;
}

.company-name {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #2c3e50;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
}

.main-nav li {
  margin: 0 1.5rem;
}

.main-nav a {
  font-family: 'Georgia', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #2c3e50;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a:not(.btn-primary)::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0.2rem;
  bottom: 0;
  left: 0;
  background-color: #1a5276;
  transition: width 0.3s ease;
}

.main-nav a:not(.btn-primary):hover::after {
  width: 100%;
}

.main-nav .btn-primary {
  padding: 1rem 2rem;
  font-size: 1.5rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 2.5rem;
  height: 0.3rem;
  background-color: #2c3e50;
  margin: 0.5rem 0;
  transition: all 0.3s ease;
}

/* ----- HERO BANNER ----- */
.hero-banner {
  padding: 10rem 0;
  background-color: #f3efe0;
  position: relative;
  overflow: hidden;
  border-bottom: 0.2rem solid #e7dec8;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/banner-pattern.svg');
  background-size: cover;
  opacity: 0.07;
  z-index: 1;
}

.hero-banner .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  max-width: 60rem;
}

.hero-content h1 {
  font-size: 4.8rem;
  margin-bottom: 2rem;
  color: #1a5276;
}

.hero-content p {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #555;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
}

.hero-image {
  flex: 1;
  max-width: 50rem;
  margin-left: 4rem;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2rem);
  }
}

/* ----- ABOUT SECTION ----- */
.about-section {
  background-color: #fff;
  padding: 10rem 0;
  border-top: 0.2rem solid #e7dec8;
  border-bottom: 0.2rem solid #e7dec8;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.about-image {
  flex: 1;
  max-width: 50rem;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  color: #1a5276;
  margin-top: 3rem;
}

.about-text h3:first-child {
  margin-top: 0;
}

.about-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  text-align: center;
}

.stat-item {
  flex: 1;
  padding: 2rem;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 4.2rem;
  font-weight: 700;
  color: #1a5276;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 1.6rem;
  color: #555;
}

/* ----- SERVICES SECTION ----- */
.services-section {
  padding: 10rem 0;
  background-color: #f9f7f2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  gap: 4rem;
}

.service-card {
  background-color: #fff;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.05);
  padding: 3rem;
  transition: all 0.3s ease;
  border: 0.1rem solid #e7dec8;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.4rem;
  background-color: #1a5276;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-1rem);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 7rem;
  height: 7rem;
  margin: 0 auto 2rem;
}

.service-card h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1a5276;
}

.service-card p {
  margin-bottom: 2rem;
  color: #555;
}

.service-features {
  list-style-type: none;
}

.service-features li {
  padding-left: 2.5rem;
  position: relative;
  margin-bottom: 1rem;
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 1.2rem;
  height: 1.2rem;
  background-color: #1a5276;
  border-radius: 50%;
}

/* ----- TESTIMONIALS SECTION ----- */
.testimonials-section {
  background-color: #fff;
  padding: 10rem 0;
  border-top: 0.2rem solid #e7dec8;
  border-bottom: 0.2rem solid #e7dec8;
}

.testimonial-slider {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  animation: fade 0.8s ease-in-out;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateX(5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-content {
  background-color: #f9f7f2;
  padding: 4rem;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.05);
  text-align: center;
  border: 0.1rem solid #e7dec8;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: 2rem;
  left: 2rem;
  font-family: 'Georgia', serif;
  font-size: 8rem;
  color: rgba(26, 82, 118, 0.1);
  line-height: 1;
}

.testimonial-icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 0.3rem solid #1a5276;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #555;
}

.testimonial-author h4 {
  margin-bottom: 0.5rem;
  color: #1a5276;
}

.testimonial-author p {
  margin-bottom: 0;
  font-size: 1.5rem;
  color: #777;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}

.prev-testimonial, .next-testimonial {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #1a5276;
  cursor: pointer;
  padding: 1rem;
  transition: all 0.3s ease;
}

.prev-testimonial:hover, .next-testimonial:hover {
  color: #0c2b40;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0 2rem;
}

.dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #1a5276;
  transform: scale(1.2);
}

/* ----- BLOG SECTION ----- */
.blog-section {
  padding: 10rem 0;
  background-color: #f9f7f2;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
  gap: 4rem;
}

.blog-card {
  background-color: #fff;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 0.1rem solid #e7dec8;
}

.blog-card:hover {
  transform: translateY(-1rem);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 20rem;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-content {
  padding: 2.5rem;
}

.blog-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-meta {
  font-size: 1.4rem;
  color: #777;
  margin-bottom: 1.5rem;
}

.blog-excerpt {
  color: #555;
  margin-bottom: 2rem;
}

.read-more {
  font-weight: 600;
  color: #1a5276;
  position: relative;
  padding-right: 2rem;
}

.read-more::after {
  content: 'â†’';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s ease;
}

.read-more:hover::after {
  right: -0.5rem;
}

/* ----- CONTACT SECTION ----- */
.contact-section {
  background-color: #fff;
  padding: 10rem 0;
  border-top: 0.2rem solid #e7dec8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-details {
  margin: 3rem 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.contact-icon {
  margin-right: 2rem;
  width: 2.4rem;
  height: 2.4rem;
  color: #1a5276;
  flex-shrink: 0;
}

.contact-text h4 {
  margin-bottom: 0.5rem;
  color: #1a5276;
}

.contact-text p {
  margin-bottom: 0;
  color: #555;
}

.contact-image {
  margin-top: auto;
  max-width: 30rem;
  margin-left: auto;
}

.subscription-form {
  background-color: #f9f7f2;
  padding: 4rem;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.05);
  border: 0.1rem solid #e7dec8;
}

.form-header {
  margin-bottom: 3rem;
}

.form-header h3 {
  color: #1a5276;
}

.form-group {
  margin-bottom: 2.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 0.1rem solid #ddd;
  border-radius: 0.4rem;
  font-family: 'Georgia', serif;
  font-size: 1.6rem;
  background-color: #fff;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a5276;
  box-shadow: 0 0 0 0.2rem rgba(26, 82, 118, 0.2);
}

.form-group textarea {
  min-height: 12rem;
  resize: vertical;
}

.form-group.checkbox {
  display: flex;
  align-items: flex-start;
}

.form-group.checkbox input {
  width: auto;
  margin-right: 1rem;
  margin-top: 0.5rem;
}

.form-group.checkbox label {
  margin-bottom: 0;
  font-weight: normal;
}

/* ----- FOOTER ----- */
.site-footer {
  background-color: #f3efe0;
  padding: 6rem 0 3rem;
  border-top: 0.2rem solid #e7dec8;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-info {
  max-width: 30rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo .logo {
  width: 4rem;
  margin-right: 1rem;
}

.footer-logo .company-name {
  font-size: 2rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #1a5276;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #154360;
  transform: translateY(-0.3rem);
}

.footer-links h4 {
  color: #1a5276;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

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

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #555;
  position: relative;
  padding-left: 1.5rem;
  transition: all 0.3s ease;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 0.6rem;
  background-color: #1a5276;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #1a5276;
  padding-left: 2rem;
}

.footer-links a:hover::before {
  opacity: 1;
  width: 0.8rem;
  height: 0.8rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 0.1rem solid #e7dec8;
  color: #777;
  font-size: 1.4rem;
}

/* ----- COOKIE BANNER ----- */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 40rem;
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.15);
  z-index: 1000;
  border: 0.1rem solid #e7dec8;
  transform: translateY(0);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.cookie-banner.hidden {
  transform: translateY(20rem);
  opacity: 0;
  pointer-events: none;
}

.cookie-content h3, .cookie-settings h3 {
  margin-bottom: 1.5rem;
  color: #1a5276;
}

.cookie-content p {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  color: #555;
}

.cookie-buttons, .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-buttons button, .cookie-actions button {
  flex: 1;
  min-width: 12rem;
}

.cookie-options {
  margin: 2rem 0;
}

.cookie-option {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.1rem solid #eee;
}

.cookie-option:last-child {
  border-bottom: none;
}

.cookie-option label {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.cookie-option p {
  font-size: 1.4rem;
  color: #777;
  margin: 0.5rem 0 0 2.5rem;
}

/* ----- BLOG ARTICLE PAGE ----- */
.blog-article {
  padding: 8rem 0;
  background-color: #fff;
}

.article-header {
  text-align: center;
  margin-bottom: 4rem;
}

.article-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  color: #777;
  font-size: 1.5rem;
}

.article-featured-image {
  max-width: 80rem;
  margin: 0 auto 5rem;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

.article-content {
  max-width: 80rem;
  margin: 0 auto;
}

.article-content h2 {
  color: #1a5276;
  margin-top: 4rem;
  font-size: 3rem;
}

.article-content h3 {
  color: #2c3e50;
  margin-top: 3rem;
}

.article-highlight {
  background-color: #f3efe0;
  padding: 2.5rem;
  border-radius: 0.8rem;
  margin: 3rem 0;
  display: flex;
  align-items: flex-start;
  border-left: 0.4rem solid #1a5276;
}

.article-highlight svg {
  margin-right: 1.5rem;
  color: #1a5276;
  flex-shrink: 0;
}

.article-highlight p {
  margin-bottom: 0;
  font-style: italic;
}

.article-quote {
  padding: 2rem 4rem;
  position: relative;
  margin: 4rem 0;
}

.article-quote::before {
  content: '"';
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Georgia', serif;
  font-size: 8rem;
  color: rgba(26, 82, 118, 0.1);
  line-height: 1;
}

.article-quote blockquote {
  font-size: 2rem;
  font-style: italic;
  color: #1a5276;
  line-height: 1.6;
}

.article-cta {
  background-color: #f9f7f2;
  padding: 3rem;
  border-radius: 0.8rem;
  margin: 5rem 0;
  text-align: center;
  border: 0.1rem solid #e7dec8;
}

.article-cta h3 {
  color: #1a5276;
  margin-bottom: 1.5rem;
}

.article-cta .btn-primary {
  margin-top: 2rem;
}

.article-share {
  margin: 5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.article-share span {
  color: #777;
}

.social-share {
  display: flex;
  gap: 1.5rem;
}

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #f3efe0;
  color: #1a5276;
  transition: all 0.3s ease;
}

.social-share a:hover {
  background-color: #1a5276;
  color: #fff;
}

.article-navigation {
  display: flex;
  justify-content: space-between;
  margin: 5rem 0;
  padding-top: 3rem;
  border-top: 0.1rem solid #e7dec8;
}

.nav-previous, .nav-next {
  max-width: 45%;
}

.nav-direction {
  display: block;
  color: #777;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.nav-title {
  font-weight: 600;
  color: #1a5276;
}

.related-articles {
  background-color: #f9f7f2;
  padding: 8rem 0;
  border-top: 0.2rem solid #e7dec8;
}

.related-articles h2 {
  text-align: center;
  margin-bottom: 5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  gap: 4rem;
  max-width: 100rem;
  margin: 0 auto;
}

/* ----- THANK YOU PAGE ----- */
.thank-you-section {
  padding: 10rem 0;
  background-color: #fff;
}

.thank-you-content {
  max-width: 70rem;
  margin: 0 auto;
  text-align: center;
}

.thank-you-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: 10rem;
  background-color: rgba(26, 82, 118, 0.1);
  border-radius: 50%;
  margin: 0 auto 3rem;
  color: #1a5276;
}

.thank-you-section h1 {
  color: #1a5276;
  margin-bottom: 1.5rem;
}

.subtitle {
  font-size: 2rem;
  color: #555;
  margin-bottom: 3rem;
}

.message-box {
  background-color: #f9f7f2;
  padding: 3rem;
  border-radius: 0.8rem;
  margin-bottom: 3rem;
  border: 0.1rem solid #e7dec8;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

/* ----- LEGAL PAGES ----- */
.legal-content {
  padding: 8rem 0;
  background-color: #fff;
}

.legal-header {
  text-align: center;
  margin-bottom: 5rem;
}

.legal-updated {
  color: #777;
  font-size: 1.5rem;
  margin-top: 1rem;
}

.legal-section {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 0.1rem solid #e7dec8;
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  color: #1a5276;
  font-size: 2.8rem;
}

.legal-section h3 {
  margin-top: 2.5rem;
}

.legal-section ul, .legal-section ol {
  margin-left: 2rem;
}

/* ----- RESPONSIVE STYLES ----- */
@media (max-width: 1200px) {
  html {
    font-size: 58%;
  }
  
  .hero-content h1 {
    font-size: 4.2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  html {
    font-size: 56%;
  }
  
  .hero-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 4rem;
  }
  
  .hero-image {
    margin-left: 0;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .about-content {
    flex-direction: column-reverse;
    gap: 4rem;
  }
  
  .about-text {
    text-align: center;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-image {
    margin: 4rem auto 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 2rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
    border-top: 0.1rem solid #e7dec8;
    border-bottom: 0.1rem solid #e7dec8;
  }
  
  .main-nav.active ul {
    flex-direction: column;
  }
  
  .main-nav.active li {
    margin: 1rem 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    flex-direction: column;
    gap: 2rem;
  }
  
  .action-buttons {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 52%;
  }
  
  h1 {
    font-size: 3.6rem;
  }
  
  h2 {
    font-size: 3rem;
  }
  
  .hero-content h1 {
    font-size: 3.6rem;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
  
  .testimonial-content {
    padding: 3rem 2rem;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    padding: 2rem;
  }
}
</pre></body></html>