/* ===========================
   Root Variables
   =========================== */
:root {
  /* Brand core */
  /* Primary */
  --color-primary: #0A5F55;
  --color-primary-hover: #0C7567;
  --color-primary-bg: #E6EFEE;
  --color-primary-hover-bg: #E7F1F0;
  --color-primary-bg-darker: #D1E1DF;

  /* Secondary */
  --color-secondary: #FF6A21;
  --color-secondary-hover: #E85F1D;
  --color-secondary-bg: #FFF0E9;
  --color-secondary-hover-bg: #FEECE4;
  --color-secondary-bg-darker: #FFE1D2;

  --color-dark: #0D2F28;
  --color-light: #F5F4EC;

  --color-bg: var(--color-light);
  --color-bg-alt: #D8C3A6;
  --color-surface: #FAF7F0;
  --color-surface-alt: #E6D8C2;

  --color-text-main: #2A2A2A;
  --color-text-soft: #4A4A4A;
  --color-text-muted: #777777;
  --color-text-on-dark: #FEFCF8;
  --color-text-on-accent: #FFFFFF;

  --color-border-subtle: #E4DFD4;
  --color-border-strong: #B6A58A;

  --color-logo-return: #33B6A8;

  /* Links */
  --color-link: var(--color-primary);
  --color-link-hover: var(--color-secondary);

  /* Sub Brand Colors & Backgrounds */
  --service-webdesign: #1FA395;
  --service-webdesign-bg: #E9F7F5;

  --service-webdev: #0A4E47;
  --service-webdev-bg: #DDECE9;

  --service-maintenance: #738F47;
  --service-maintenance-bg: #F3F7EB;

  --service-authority: #C98A2C;
  --service-authority-bg: #FBF4E6;

  --service-intelligence: #1C6FA8;
  --service-intelligence-bg: #E7F2FA;

  --service-growth: #F45E4C;
  --service-growth-bg: #FDECEA;

  /* Semantic states */
  --color-success: #198A6A;
  --color-success-bg: #E8F7F1;

  --color-danger: #D64532;
  --color-danger-bg: #FDECEA;

  --color-warning: #F5A93C;
  --color-warning-bg: #FFF7E8;

  --color-info: #0B7F78;
  --color-info-bg: #E7F6F4;

  /* Spacing & Layout */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 5rem;
  --header-h: 80px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --hero-title-mb: clamp(0.8rem, 0.4vw + 0.6rem, 1.6rem);

  /* Fonts & Weights */
  --font-display: neue-haas-grotesk-display, sans-serif;
  --font-text: neue-haas-grotesk-text, sans-serif;

  --fw-light: 400;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-black: 900;

  --line-height-reset: 1;
  --line-height-tight: 1.1;
  --line-height-snug: 1.22;
  --line-height-normal: 1.35;
  --line-height-relaxed: 1.45;
}

/* =========================
   FLUID BODY TYPOGRAPHY
   ========================= */

@supports (font-size: clamp(1rem, 1vw, 1rem)) {
  :root {
    --text-xs: clamp(0.79rem, 0.05vw + 0.78rem, 0.82rem);
    --text-s: clamp(0.89rem, 0.14vw + 0.86rem, 0.99rem);
    --text-m: clamp(1rem, 0.27vw + 0.95rem, 1.19rem);
    --text-l: clamp(1.13rem, 0.43vw + 1.04rem, 1.43rem);
    --text-xl: clamp(1.27rem, 0.63vw + 1.14rem, 1.71rem);
  }
}

/* fallback */
@supports not (font-size: clamp(1rem, 1vw, 1rem)) {
  :root {
    --text-xs: 0.79rem;
    --text-s: 0.89rem;
    --text-m: 1rem;
    --text-l: 1.13rem;
    --text-xl: 1.27rem;
  }

  @media (min-width: 1440px) {
    :root {
      --text-xs: 0.82rem;
      --text-s: 0.99rem;
      --text-m: 1.19rem;
      --text-l: 1.43rem;
      --text-xl: 1.71rem;
    }
  }
}


/* =========================
   FLUID HEADINGS
   ========================= */

@supports (font-size: clamp(1rem, 1vw, 1rem)) {
  :root {
    --headings-h6: clamp(0.77rem, 0.02vw + 0.76rem, 0.8rem);
    --headings-h5: clamp(1rem, 0.05vw + 0.99rem, 1.03rem);
    --headings-h4: clamp(1.25rem, 0.18vw + 1.21rem, 1.38rem);
    --headings-h3: clamp(1.56rem, 0.39vw + 1.49rem, 1.83rem);
    --headings-h2: clamp(1.95rem, 0.7vw + 1.81rem, 2.44rem);
    --headings-h1: clamp(2.44rem, 1.16vw + 2.21rem, 3.26rem);
    --headings-hero-title: clamp(3.05rem, 1.84vw + 2.68rem, 4.34rem);
  }
}

/* fallback */
@supports not (font-size: clamp(1rem, 1vw, 1rem)) {
  :root {
    --headings-h6: 0.77rem;
    --headings-h5: 1rem;
    --headings-h4: 1.25rem;
    --headings-h3: 1.56rem;
    --headings-h2: 1.95rem;
    --headings-h1: 2.44rem;
    --headings-hero-title: 3.05rem;
  }

  @media (min-width: 1440px) {
    :root {
      --headings-h6: 0.8rem;
      --headings-h5: 1.03rem;
      --headings-h4: 1.38rem;
      --headings-h3: 1.83rem;
      --headings-h2: 2.44rem;
      --headings-h1: 3.26rem;
      --headings-hero-title: 4.34rem;
    }
  }
}

/* Misc general css */
h1, h2 {
  line-height: var(--line-height-tight);
}

h3, h4, h5, h6 {
  line-height: var(--line-height-normal);
}

p, li {
  line-height: var(--line-height-relaxed);
}

/* ===========================
   Service Color Application
   =========================== */
body.service-webdesign    .service-content-section { background-color: var(--service-webdesign-bg); }
body.service-webdev       .service-content-section { background-color: var(--service-webdev-bg); }
body.service-maintenance  .service-content-section { background-color: var(--service-maintenance-bg); }
body.service-authority    .service-content-section { background-color: var(--service-authority-bg); }
body.service-intelligence .service-content-section { background-color: var(--service-intelligence-bg); }
body.service-growth       .service-content-section { background-color: var(--service-growth-bg); }

body.service-webdesign    .service-hero-section { background-color: var(--service-webdesign); }
body.service-webdev       .service-hero-section { background-color: var(--service-webdev); }
body.service-maintenance  .service-hero-section { background-color: var(--service-maintenance); }
body.service-authority    .service-hero-section { background-color: var(--service-authority); }
body.service-intelligence .service-hero-section { background-color: var(--service-intelligence); }
body.service-growth       .service-hero-section { background-color: var(--service-growth); }

/* Override the base background for each specific service type */

.service-webdesign .w-grid-item-h,
.service-webdesign .service-grid-content { background-color: var(--service-webdesign-bg); }

.service-webdev .w-grid-item-h,
.service-webdev .service-grid-content { background-color: var(--service-webdev-bg); }

.service-maintenance .w-grid-item-h,
.service-maintenance .service-grid-content { background-color: var(--service-maintenance-bg); }

.service-authority .w-grid-item-h,
.service-authority .service-grid-content { background-color: var(--service-authority-bg); }

.service-intelligence .w-grid-item-h,
.service-intelligence .service-grid-content { background-color: var(--service-intelligence-bg); }

.service-growth .w-grid-item-h,
.service-growth .service-grid-content { background-color: var(--service-growth-bg); }

/* Header CSS */
/* Wrapper to control the size */
.logo-wrapper {
  width: 80px; 
  height: 80px;
  display: block;
}
/* Logo color animation */
@keyframes color-cycle {
  0%    { fill: var(--color-light); }
  14%   { fill: #1FA395; } /* Webdesign */
  28%   { fill: #0A4E47; } /* Webdev */
  42%   { fill: #738F47; } /* Maintenance */
  57%   { fill: #C98A2C; } /* Authority */
  71%   { fill: #1C6FA8; } /* Intelligence */
  85%   { fill: #F45E4C; } /* Growth */
  100%  { fill: var(--color-light); }
}

.logo-background-color {
  fill: var(--color-logo-return); 
  transition: fill 0.3s ease-in-out;
}

.logo-wrapper.is-animated .logo-background-color {
  animation: color-cycle 14s ease-in-out infinite;
}

.logo-wrapper:hover .logo-background-color {
  fill: #e53510;
}

.logo-wrapper.header-transparent .logo-background-color {
  fill: #FFFFFF;
}

.logo-wrapper.header-sticky .logo-background-color {
  fill: #000000;
}

.l-subheader {
  padding-left: 0!important;
}

/*.bg_transparent {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}*/


/* 1. Default Light/Glass version (Non-sticky, non-blog pages) */
body:not(.single-post) .bg_transparent:not(.sticky) {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* 2. Darker version (Applied to Single Posts OR any Sticky Header) */
body.single-post .bg_transparent,
.bg_transparent.sticky {
    background: rgba(0, 0, 0, 0.5); /* Darker black with 50% opacity */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Adding a transition makes the color switch feel smoother */
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

/* 1. Kill the Ripple effect container and any children it creates */
.main-navigation .ripple-container,
.main-navigation .ripple {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    background: none !important;
}

/* 2. Strip background from the anchor itself during all click/focus phases */
.main-navigation a.w-nav-anchor:active,
.main-navigation a.w-nav-anchor:focus,
.main-navigation a.w-nav-anchor:active *,
.main-navigation a.w-nav-anchor:focus * {
    background-color: transparent !important;
    background: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* 3. Remove mobile tap highlight (the grey box on phones) */
.main-navigation a.w-nav-anchor {
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
    -webkit-tap-highlight-color: transparent !important;
}

.mobile-navigation .w-nav-icon.style_dots_1 svg {
  display: block;
  transition: transform .35s cubic-bezier(.8,.5,.2,1.4);
  color: #FFFFFF;
}

.mobile-navigation .w-nav-list,
.w-nav.type_mobile.m_layout_fullscreen .w-nav-list.level_1.mobile-navigation {
  height: auto !important;
  min-height: auto !important;
  bottom: auto !important;
}

.mobile-navigation .w-nav-list li {
	margin-top: 0!important;
}

.mobile-navigation ul.w-nav-list {
	padding-top: 0!important;
	padding-left: 1.5rem!important;
}

.mobile-navigation-section {
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}

.mobile-navigation-section .vc_column-inner > .wpb_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

.mobile-navigation-section ul.menu {
  font-size: var(--headings-h2);
  font-family: var(--font-display);
  font-weight: var(--fw-black);
}

.mobile-navigation-section .mobile-navigation-logo {
  height: 60px;
  width: auto;
}

/* =========================================
   HOME CSS
   ========================================= */

.home-hero-section {
  /*background: var(--color-primary);*/
  color: #fff;
  padding-top: var(--space-7);
  padding-bottom: var(--space-6);
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
}

.home-hero-section {
  position: relative;
  overflow: hidden;
  color: #fff;

  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12), transparent 55%),
    radial-gradient(circle at 85% 80%, rgba(255,106,33,0.25), transparent 60%),
    linear-gradient(135deg, #0A5F55 0%, #0C7567 45%, #FF6A21 100%);

  background-size: 200% 200%, 200% 200%, 100% 100%;
  animation: luxuryGradient 22s ease-in-out infinite;
}

@keyframes luxuryGradient {

  0% {
    background-position:
      20% 30%,
      85% 80%,
      center;
  }

  50% {
    background-position:
      35% 45%,
      70% 60%,
      center;
  }

  100% {
    background-position:
      20% 30%,
      85% 80%,
      center;
  }

}

/* Content wrapper */
/* Content wrapper */
.home-hero-section .vc_column-inner > .wpb_wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.1rem;
  align-content: end;
}

/* Desktop layout */
@media (min-width: 1024px) {

  .home-hero-section .vc_column-inner > .wpb_wrapper {
    grid-template-columns: 2fr 1fr;
  }

  /* Ensure content sits in first column */
  .home-hero-section .vc_column-inner > .wpb_wrapper > * {
    grid-column: 1;
  }

}

.home-hero-title {
  color: var(--color-text-on-accent, #FFFFFF);
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  line-height: var(--line-height-tight);
  font-size: var(--headings-h1);
}

.home-hero-intro {
  color: var(--color-text-on-accent, #FFFFFF);
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  line-height: var(--line-height-normal);
  font-size: var(--headings-h4);
}

/* =========================================
   SERVICE SECTION
   ========================================= */

.service-section {
  background: var(--color-primary-bg-darker, #D1E1DF);
  padding-block: var(--space-6);
}

.service-section .vc_column-inner > .wpb_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem;
}

/* ==========================================================
   TEXT CONTENT WRAPPER: 2-COLUMN GRID
   This targets the section intro with the title and paragraph.
   ========================================================== */

.w-vwrapper.text-content {
    display: grid !important; /* Forces grid layout over theme defaults */
    grid-template-columns: 2fr 1fr; /* 66% width for text, 33% empty space */
    column-gap: 2rem;
    row-gap: var(--space-4);
    width: 100%;
    align-items: start;
}

/* Force all children (h2, div, p) to stay in the first (left) column */
.w-vwrapper.text-content > * {
    grid-column: 1;
    margin-left: 0;
    margin-right: 0;
}

/* Specific styling for the title within this grid */
.w-vwrapper.text-content .service-section-title,
.w-vwrapper.text-content .blog-section-title,
.w-vwrapper.text-content .partner-section-title {
    color: var(--color-dark, #0D2F28);
    font-family: var(--font-display);
    font-weight: var(--fw-black);
    line-height: var(--line-height-tight);
    font-size: var(--headings-h2);
    width: 100%; 
    margin-bottom: 0;
}

/* Specific styling for the intro text paragraph */
.w-vwrapper.text-content .service-section-intro,
.w-vwrapper.text-content .news-section-intro,
.w-vwrapper.text-content .partner-section-intro {
    max-width: 100%;
    color: var(--color-dark, #0D2F28);
    font-family: var(--font-display);
    font-weight: var(--fw-regular);
    line-height: var(--line-height-normal);
    font-size: var(--headings-h4);
    margin-bottom: 0;
}

/* Responsive: Collapse to a single column on tablets and mobiles */
@media (max-width: 1024px) {
    .w-vwrapper.text-content {
        grid-template-columns: 1fr; /* Back to full width when screen is small */
    }
    
    /* Ensure children take up full width on mobile */
    .w-vwrapper.text-content > * {
        grid-column: 1;
    }
}

/* 1. Main Container Scope */
.service-grid .w-grid-item-h {
    position: relative;
    overflow: hidden; 
    border-radius: 24px; 
    height: 100%;
    display: flex;
    flex-direction: column;
    /*background: var(--color-primary-bg-darker, #D1E1DF);*/
}
    
    
/* 2. The Image Wrapper */
.service-grid .service-grid-media {
    width: 100%;
    /* Image keeps its 1280x853 ratio naturally now */
}

.service-grid .service-grid-media img {
    display: block;
    width: 100%;
    height: auto; /* Respects your new aspect ratio */
    object-fit: cover;
}

/* 3. The Content Wrapper (Now after the image) */
.service-grid .service-grid-content {
    position: relative; 
    flex-grow: 1;
    
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    /*background: var(--color-primary-bg-darker, #D1E1DF);*/
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

/* 4. Text & Button Styles (Preserved from your requirements) */
.service-grid .service-grid-title {
    font-weight: var(--fw-black);
    font-family: var(--font-display);
    font-size: var(--headings-h4);
    line-height: var(--line-height-tight);
    color: var(--color-dark, #0D2F28);
}

.service-grid .service-grid-excerpt,
.service-grid .service-grid-excerpt p {
    color: var(--color-dark, #0D2F28);
    font-size: var(--text-s);
    font-family: var(--font-text);
    /* Corrected: line-height-snug should likely be applied to line-height, not weight */
    line-height: var(--line-height-normal); 
    margin: 0;
}

.service-grid .service-grid-question {
    font-size: var(--headings-h4);
    font-weight: var(--fw-regular);
    font-family: var(--font-display);
    line-height: var(--line-height-tight);
    color: var(--color-dark, #0D2F28);
}

/* 5. Click-overlay */
.service-grid .w-vwrapper-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

/* =========================================
   ABOUT SECTION
   ========================================= */

.about-us-section {
  background: var(--color-primary, #0A5F55);
  padding-block: var(--space-8);
}

.about-us-section .vc_column-inner > .wpb_wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.1rem;
  align-content: center;
}

/* Desktop layout */
@media (min-width: 1024px) {

  .about-us-section .vc_column-inner > .wpb_wrapper {
    grid-template-columns: 2fr 1fr;
  }

  /* Ensure content sits in first column */
  .about-us-section .vc_column-inner > .wpb_wrapper > * {
    grid-column: 1;
  }

}

.about-section-title {
  font-weight: var(--fw-black);
  font-family: var(--font-display);
  font-size: var(--headings-h2);
  line-height: var(--line-height-tight);
  color: var(--color-text-on-accent, #FFFFFF);
  width: 100%;
}

@media (min-width: 1024px) {
  .about-section-title {
    max-width: 80%;
  }
}

.about-section-intro {
    font-size: var(--headings-h4);
    font-weight: var(--fw-regular);
    font-family: var(--font-display);
    line-height: var(--line-height-tight);
    color: var(--color-text-on-accent, #FFFFFF);
}

/* =========================================
   NEWS SECTION
   ========================================= */

.news-section {
  
  background: var(--color-secondary-bg, #FFF0E9);
  padding-block: var(--space-6);
}

.news-section .vc_column-inner > .wpb_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem;
}

/* Blog Grid CSS */
/* 1. Main Container Scope */
.blog-grid .w-grid-item-h {
    position: relative;
    overflow: hidden; 
    border-radius: 24px; 
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--color-secondary-bg-darker, #FFE1D2);
}
    
    
/* 2. The Image Wrapper */
.blog-grid .blog-grid-media {
    width: 100%;
}

.blog-grid .blog-grid-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* 3. The Content Wrapper (Now after the image) */
.blog-grid .blog-grid-content {
    position: relative; 
    flex-grow: 1;
    padding: var(--space-4);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: var(--color-secondary-bg-darker, #FFE1D2);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

/* 4. Text & Button Styles (Preserved from your requirements) */
.blog-grid .blog-grid-title {
    font-weight: var(--fw-black);
    font-family: var(--font-display);
    font-size: var(--headings-h4);
    line-height: var(--line-height-tight);
    color: var(--color-dark, #0D2F28);
}

.blog-grid .blog-grid-excerpt,
.blog-grid .blog-grid-excerpt p {
    color: var(--color-dark, #0D2F28);
    font-size: var(--text-s);
    font-family: var(--font-text);
    /* Corrected: line-height-snug should likely be applied to line-height, not weight */
    line-height: var(--line-height-normal); 
    margin: 0;
}

.blog-grid .blog-grid-meta {
    font-size: var(--headings-h5);
    font-weight: var(--fw-regular);
    font-family: var(--font-display);
    line-height: var(--line-height-tight);
    color: var(--color-dark, #0D2F28);
}

/* 5. Click-overlay */
.blog-grid .w-vwrapper-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

/* =========================================
   PARTNER SECTION
   ========================================= */

.partner-section {
  background: var(--color-surface, #FAF7F0);
  padding-block: var(--space-6);
}

.partner-section .vc_column-inner > .wpb_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem;
}

/* 1. The Container: Vertical centering, Horizontal alignment to the LEFT */
.partner-grid .partner-grid-media {
    display: flex !important;
    align-items: center !important; 
    justify-content: flex-start !important;
    height: 100px; 
    width: 100%;
    margin-bottom: 0rem;
}

/* 2. The SVG fix: Force base size and left alignment */
.partner-grid .partner-grid-media img {
    width: 100% !important; 
    height: 100% !important;
    max-width: 180px !important; 
    max-height: 60px !important;
    object-fit: contain !important;
    object-position: left;
}

/* 3. The Content: Left aligned text */
.partner-grid .partner-grid-content {
    text-align: left;
    max-width: 100%;
    margin: 0;
}

.partner-grid .partner-grid-excerpt,
.partner-grid .partner-grid-excerpt p {
    color: var(--color-dark, #0D2F28);
    font-size: var(--text-xs);
    font-family: var(--font-text);
    line-height: var(--line-height-normal);
    margin: 0;
    text-align: left;
}

/* SERVICE PAGE LAYOUT */
.service-hero-section {
    color: #fff;
    padding-top: var(--space-7);
    padding-bottom: var(--space-6);
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
}

.service-hero-section .vc_column-inner > .wpb_wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.1rem;
  align-content: end;
}

/* Desktop layout */
@media (min-width: 1024px) {

  .service-hero-section .vc_column-inner > .wpb_wrapper {
    grid-template-columns: 2fr 1fr;
  }

  /* Ensure content sits in first column */
  .service-hero-section .vc_column-inner > .wpb_wrapper > * {
    grid-column: 1;
  }
}

.service-hero-title {
    color: var(--color-text-on-accent, #FFFFFF);
    font-family: var(--font-display);
    font-weight: var(--fw-black);
    line-height: var(--line-height-tight);
    font-size: var(--headings-h1);
}

.service-hero-intro {
  color: var(--color-text-on-accent, #FFFFFF);
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  line-height: var(--line-height-normal);
  font-size: var(--headings-h4);
}

.service-content-section {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
  /*background: var(--color-bg-alt, #D8C3A6);*/
}

.service-content-section .vc_column-inner > .wpb_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  row-gap: 2rem;
}

/* Desktop layout */
@media (min-width: 1024px) {

  .service-content-section .vc_column-inner > .wpb_wrapper {
    grid-template-columns: 3fr 2fr;
    align-items: start;
    column-gap: 3rem;
  }
}

.w-vwrapper.service-inner-content,
.w-vwrapper.faq-inner-content {
    display: grid !important; /* Forces grid layout over theme defaults */
    grid-template-columns: 1fr; /* 66% width for text, 33% empty space */
    column-gap: 2rem;
    row-gap: var(--space-4);
    width: 100%;
    align-items: start;
}

/* Force all children (h2, div, p) to stay in the first (left) column */
.w-vwrapper.service-inner-content > *,
.w-vwrapper.faq-inner-content > * {
    grid-column: 1;
    margin-left: 0;
    margin-right: 0;
}

.service-main-heading {
  color: var(--color-dark, #0D2F28);
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  line-height: var(--line-height-tight);
  font-size: var(--headings-h2);
}

.service-main-intro {
  color: var(--color-dark, #0D2F28);
  font-family: var(--font-text);
  font-weight: var(--fw-regular);
  line-height: var(--line-height-normal);
  font-size: var(--headings-h5);
}

.service-main-sub-heading {
  color: var(--color-dark, #0D2F28);
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  line-height: var(--line-height-tight);
  font-size: var(--headings-h3);
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.service-sub-heading-tagline {
  color: var(--color-dark, #0D2F28);
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  line-height: var(--line-height-normal);
  font-size: var(--headings-h4);
}

.service-main-content {
  color: var(--color-dark, #0D2F28);
  font-family: var(--font-text);
  font-weight: var(--fw-regular);
  line-height: var(--line-height-normal);
  font-size: var(--headings-h5);
}

.service-title {
  color: var(--color-dark, #0D2F28);
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  line-height: var(--line-height-tight);
  font-size: var(--headings-h3);
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.service-content {
  color: var(--color-dark, #0D2F28);
  font-family: var(--font-text);
  font-weight: var(--fw-regular);
  line-height: var(--line-height-normal);
  font-size: var(--headings-h5);
}

.service-content ul {
  margin-left: 1.2rem;
}

.service-question {
  color: var(--color-primary-hover, #0C7567);
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  line-height: var(--line-height-tight);
  font-size: var(--headings-h4);
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;  
}

.service-cta-section {
  padding-top: var(--space-7);
  padding-bottom: var(--space-7);
  background: var(--color-secondary, #FF6A21);
  transition: background 0.4s ease;
}

.service-cta-section:hover {
  background: var(--color-primary-hover, #0C7567);
}

.service-cta-section .vc_column-inner > .wpb_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center; 
  row-gap: 2rem;
  align-content: center;
}

/* Desktop layout */
@media (min-width: 1024px) {
  .service-cta-section .vc_column-inner > .wpb_wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: center; 
    column-gap: 3rem;
    min-height: 100%; 
  }
}

.cta-section-lead,
.cta-section-lead p {
    font-family: var(--font-display);
    font-weight: var(--fw-black);
    font-size: var(--headings-h2);
    line-height: var(--line-height-tight)!important;
    color: var(--color-text-on-accent, #FFFFFF);
    width: 100%;
    margin-bottom: 0;
}

@media (min-width: 1024px) {
  .cta-section-lead,
  .cta-section-lead p {
    width: 100%
  }
}


.cta-section-tagline {
    font-family: var(--font-display);
    font-weight: var(--fw-light);
    font-size: var(--headings-h4);
    line-height: var(--line-height-tight)!important;
    color: var(--color-text-on-accent, #FFFFFF);
    margin-bottom: 0;
}

/* Footer CSS */
.main-footer-section {
  background: var(--color-dark, #0D2F28);
  padding-block: var(--space-5);
}

.main-footer-section .vc_column-inner > .wpb_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .main-footer-section .vc_column-inner > .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}
}

.bottom-footer-section {
  background: var(--color-surface-alt, #E6D8C2);
  padding-block: var(--space-2);
}

.bottom-footer-section .vc_column-inner > .wpb_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .bottom-footer-section .vc_column-inner > .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-content: center;
    align-items: center;
}
}

.footer-heading {
  color: var(--color-text-on-dark, #FEFCF8);
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: var(--text-s);
}

.footer-menu,
.footer-address {
  color: var(--color-text-on-accent, #FFFFFF);
  font-family: var(--font-text);
  font-weight: var(--fw-regular);
  font-size: var(--text-s);
}

.footer-additional-content {
  color: var(--color-text-on-dark, #FEFCF8);
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: var(--text-s);
}

.footer-copyright {
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: var(--text-s);
}

.social-icons-footer .no-touch a:hover {
  text-decoration: none!important;
}

/* FAQ Page CSS */
.faq-hero-section {
    color: #fff;
    padding-top: var(--space-7);
    padding-bottom: var(--space-6);
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    background: var(--color-bg-alt, #D8C3A6);
}

.faq-hero-section .vc_column-inner > .wpb_wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.1rem;
  align-content: end;
}

/* Desktop layout */
@media (min-width: 1024px) {

  .faq-hero-section .vc_column-inner > .wpb_wrapper {
    grid-template-columns: 2fr 1fr;
  }

  /* Ensure content sits in first column */
  .faq-hero-section .vc_column-inner > .wpb_wrapper > * {
    grid-column: 1;
  }
}

.faq-main-section {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
  background: var(--color-surface, #FAF7F0);
}

.faq-main-section .vc_column-inner > .wpb_wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.1rem;
}

.faq-intro-wrapper {
  width: 100%;
}

@media (min-width: 1024px) {
  .faq-intro-wrapper {
    width: 70%;
}
}

.faq-hero-title {
    color: var(--color-text-on-accent, #FFFFFF);
    font-family: var(--font-display);
    font-weight: var(--fw-black);
    line-height: var(--line-height-tight);
    font-size: var(--headings-h1);
}

.faq-hero-intro {
    color: var(--color-text-on-accent, #FFFFFF);
    font-family: var(--font-display);
    font-weight: var(--fw-regular);
    line-height: var(--line-height-normal);
    font-size: var(--headings-h4);
}

.faq-intro-content {
    color: var(--color-dark, #0D2F28);
    font-family: var(--font-text);
    font-weight: var(--fw-regular);
    line-height: var(--line-height-normal);
    font-size: var(--headings-h5);
}

.faq-category-title {
    color: var(--color-dark, #0D2F28);
    font-family: var(--font-display);
    font-weight: var(--fw-black);
    line-height: var(--line-height-tight);
    font-size: var(--headings-h3);
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 2rem;
}

/* Contact Page CSS */

.contact-hero-section {
    padding-top: var(--space-7);
    padding-bottom: var(--space-6);
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    background: var(--color-secondary);
}

.contact-hero-section .vc_column-inner > .wpb_wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.1rem;
  align-content: end;
}

/* Desktop layout */
@media (min-width: 1024px) {

  .contact-hero-section .vc_column-inner > .wpb_wrapper {
    grid-template-columns: 2fr 1fr;
  }

  /* Ensure content sits in first column */
  .contact-hero-section .vc_column-inner > .wpb_wrapper > * {
    grid-column: 1;
  }
}

.contact-main-section {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
  background: var(--color-surface, #FAF7F0);
}

.contact-main-section .vc_column-inner > .wpb_wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-main-section .vc_column-inner > .wpb_wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    column-gap: 3rem;
}
}



.contact-us-hero-title {
    color: var(--color-text-on-accent, #FFFFFF);
    font-family: var(--font-display);
    font-weight: var(--fw-black);
    line-height: var(--line-height-tight);
    font-size: var(--headings-h1);
}

.contact-us-hero-intro {
    color: var(--color-text-on-accent, #FFFFFF);
    font-family: var(--font-display);
    font-weight: var(--fw-regular);
    line-height: var(--line-height-normal);
    font-size: var(--headings-h4);
}

/* Single Blog CSS */

.single-blog-section {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
  background: var(--color-surface, #FAF7F0);
}

.single-blog-section .vc_column-inner > .wpb_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .single-blog-section .vc_column-inner > .wpb_wrapper {
    grid-template-columns: 17fr 8fr;
    align-items: start;
  }

  /* Prevent children from overflowing or forcing 100% width */
  .single-blog-main-wrapper, 
  .single-blog-side-wrapper {
    width: auto !important; 
    min-width: 0; 
  }
}

/* Ensure the container doesn't restrict child widths */
.blog-main-content {
    width: 100%;
}

.single-blog-main-wrapper .single-blog-media img {
  border-radius: 24px;
}

/* Force all images and figure wrappers to fill the 17fr column */
.blog-main-content img,
.blog-main-content .wp-block-image,
.blog-main-content figure {
    width: 100% !important;
    max-width: 100% !important;
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: var(--space-3);
    border-radius: 24px;
}

/* If you use Impreza/WPBakery specific image classes */
.blog-main-content .w-post-elm.post_image img {
    width: 100% !important;
    border-radius: 24px;
}

.single-blog-main-wrapper h1.single-blog-title {
    color: var(--color-dark);
    font-family: var(--font-display);
    font-weight: var(--fw-black);
    line-height: var(--line-height-tight);
    font-size: var(--headings-h2);
}

.single-blog-main-wrapper .blog-main-content h2,
.single-blog-main-wrapper .blog-main-content h3,
.single-blog-main-wrapper .blog-main-content h4,
.single-blog-main-wrapper .blog-main-content h5 {
    font-size: var(--headings-h3);
    color: var(--color-dark);
    font-family: var(--font-display);
    font-weight: var(--fw-black);
    line-height: var(--line-height-snug);
    margin-top: var(--space-3);
    margin-bottom: var(--space-1);
    padding-top: 0;
}

.single-blog-main-wrapper .blog-main-content p {
   font-size: var(--headings-h5);
   line-height: var(--line-height-relaxed);
   color: var(--color-dark);
   font-family: var(--font-text);
   font-weight: var(--fw-regular);
   margin-bottom: var(--space-2);
}

.single-blog-main-wrapper .blog-main-content ul,
.single-blog-main-wrapper .blog-main-content ol {
    margin-left: 1.3rem;
}

.single-blog-main-wrapper .blog-main-content ul,
.single-blog-main-wrapper .blog-main-content ul li,
.single-blog-main-wrapper .blog-main-content ol,
.single-blog-main-wrapper .blog-main-content ol li {
   font-size: var(--headings-h5);
   line-height: var(--line-height-relaxed);
   color: var(--color-dark);
   font-family: var(--font-text);
   font-weight: var(--fw-regular);
   margin-bottom: 0;
}

.single-blog-main-wrapper .single-blog-meta {
   font-size: var(--fs-xxs);
   line-height: var(--lh-base);
   color: var(--color-dark);
   font-family: var(--font-display);
   font-weight: var(--fw-regular); 
}

.new-blog-hero-section {
    padding-top: var(--space-7);
    padding-bottom: var(--space-6);
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    background: 
    /* 1. White highlight moved to Bottom Left (was 20% 30%) */
    radial-gradient(circle at 20% 70%, rgba(255,255,255,0.12), transparent 55%),
    
    /* 2. Orange Glow moved to Top Right (was 85% 80%) */
    radial-gradient(circle at 85% 20%, rgba(255,106,33,0.25), transparent 60%),
    
    /* 3. Base Gradient pointing to Top Right (45deg) */
    linear-gradient(45deg, #0A5F55 0%, #0C7567 45%, #FF6A21 100%);

  background-size: 200% 200%, 200% 200%, 100% 100%;
  animation: luxuryGradient 22s ease-in-out infinite;
}

.new-blog-hero-section .vc_column-inner > .wpb_wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.1rem;
  align-content: end;
}

/* Desktop layout */
@media (min-width: 1024px) {

  .new-blog-hero-section .vc_column-inner > .wpb_wrapper {
    grid-template-columns: 2fr 1fr;
  }

  /* Ensure content sits in first column */
  .new-blog-hero-section .vc_column-inner > .wpb_wrapper > * {
    grid-column: 1;
  }
}

.new-blog-hero-title {
    color: var(--color-text-on-accent, #FFFFFF);
    font-family: var(--font-display);
    font-weight: var(--fw-black);
    line-height: var(--line-height-tight);
    font-size: var(--headings-h1);
}

.new-blog-hero-intro {
    color: var(--color-text-on-accent, #FFFFFF);
    font-family: var(--font-display);
    font-weight: var(--fw-regular);
    line-height: var(--line-height-normal);
    font-size: var(--headings-h4);
}

.main-news-content-section {
    padding-top: var(--space-5);
    padding-bottom: var(--space-5);
    background: var(--color-surface, #FAF7F0);
}

.main-news-content-section .vc_column-inner > .wpb_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.main-news-intro-content {
    color: var(--color-dark);
    font-family: var(--font-display);
    font-weight: var(--fw-regular);
    line-height: var(--line-height-normal);
    font-size: var(--headings-h5);
    width: 100%;
}

@media (min-width: 1024px) {
  .main-news-intro-content {
    width: 70%;
  }
}

.about-us-hero-section {
    padding-top: var(--space-7);
    padding-bottom: var(--space-6);
    display: flex;
    align-items: flex-end;
    background: 
    /* 1. White highlight moved to Top Right (was 20% 30%) */
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.12), transparent 55%),
    
    /* 2. Orange Glow moved to Bottom Left (was 85% 80%) */
    radial-gradient(circle at 15% 80%, rgba(255,106,33,0.25), transparent 60%),
    
    /* 3. Base Gradient flipped to 225deg to point Orange toward Bottom Left */
    linear-gradient(225deg, #0A5F55 0%, #0C7567 45%, #FF6A21 100%);

  background-size: 200% 200%, 200% 200%, 100% 100%;
  animation: luxuryGradient 22s ease-in-out infinite;
}

/* Mobile & Tablet (below 1024px) */
.about-us-hero-section .vc_column-inner > .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-content: end;
}

/* The first wrapper (Text) */
.about-us-hero-section .w-vwrapper:nth-child(1) {
    order: 2; /* Moves text to the bottom */
}

/* The second wrapper (Image) */
.about-us-hero-section .w-vwrapper:nth-child(2) {
    order: 1; /* Moves image to the top */
    align-self: center; /* Optional: centers image if it's not full width */
}

/* Desktop layout (1024px and up) */
@media (min-width: 1024px) {
    .about-us-hero-section .vc_column-inner > .wpb_wrapper {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
        align-items: end;
    }

    /* Reset order for desktop so text is left (1) and image is right (2) */
    .about-us-hero-section .w-vwrapper:nth-child(1) {
        order: 1;
    }
    .about-us-hero-section .w-vwrapper:nth-child(2) {
        order: 2;
        align-self: end;
    }
}

.about-us-hero-title {
    color: var(--color-text-on-accent, #FFFFFF);
    font-family: var(--font-display);
    font-weight: var(--fw-black);
    line-height: var(--line-height-tight);
    font-size: var(--headings-h1);
}

.about-us-hero-intro {
    color: var(--color-text-on-accent, #FFFFFF);
    font-family: var(--font-display);
    font-weight: var(--fw-regular);
    line-height: var(--line-height-normal);
    font-size: var(--headings-h4);
}

.image-text-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 24px;
}

.founder-media, 
.founder-media .w-image-h,
.founder-media img {
    width: 100%;
    height: 100%;
}

.founder-media img {
    object-fit: cover;
    object-position: top;
    display: block;
}

.ceo-founder-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--color-dark);
    font-weight: var(--fw-black);
    font-family: var(--font-display);
    line-height: var(--line-height-tight);
    font-size: var(--headings-h4);
    box-sizing: border-box;
}

.smaller-text {
   font-family: var(--font-display);
   color: var(--color-dark);
   font-weight: var(--fw-regular);
   line-height: var(--line-height-tight);
   font-size: var(--headings-h6);
}

.about-us-main-section {
    padding-top: var(--space-5);
    padding-bottom: var(--space-5);
    background: var(--color-surface, #FAF7F0);
}

.about-us-main-section .vc_column-inner > .wpb_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .about-us-main-section .vc_column-inner > .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.about-us-main-title {

}

.about-us-main-title {
    color: var(--color-dark);
    font-family: var(--font-display);
    font-weight: var(--fw-black);
    line-height: var(--line-height-tight);
    font-size: var(--headings-h3);
}

.about-us-main-intro {
    color: var(--color-dark);
    font-family: var(--font-display);
    font-weight: var(--fw-regular);
    line-height: var(--line-height-normal);
    font-size: var(--headings-h5);
}

/* General Page CSS */
.general-one-column-section {
	padding-top: var(--space-7);
    padding-bottom: var(--space-6);
	background: var(--color-surface, #FAF7F0);
}

.general-one-column-section .vc_column-inner > .wpb_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.privacy-policy-title {
  color: var(--color-dark);
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  line-height: var(--line-height-tight);
  font-size: var(--headings-h3);
}

.privacy-policy-content p {
   font-size: var(--headings-h5);
   line-height: var(--line-height-relaxed);
   color: var(--color-dark);
   font-family: var(--font-text);
   font-weight: var(--fw-regular);
   margin-bottom: var(--space-2);
}

span.headline-legal {
    font-size: var(--headings-h4);
    color: var(--color-dark);
    font-family: var(--font-display);
    font-weight: var(--fw-black);
    line-height: var(--line-height-snug);
    margin-top: var(--space-3);
    margin-bottom: var(--space-1);
    padding-top: 0;
    display: block;
}

.privacy-policy-content ul,
.privacy-policy-content ol {
   margin-left: 1.3rem;
   margin-bottom: 1.1rem;
   font-size: var(--headings-h5);
   line-height: var(--line-height-relaxed);
   color: var(--color-dark);
   font-family: var(--font-text);
   font-weight: var(--fw-regular);
}

.privacy-policy-content ul li,
.privacy-policy-content ol li {
   font-size: var(--headings-h5);
   line-height: var(--line-height-relaxed);
   color: var(--color-dark);
   font-family: var(--font-text);
   font-weight: var(--fw-regular);
   margin-bottom: 0;
}

.our-service-hero-section {
    padding-top: var(--space-7);
    padding-bottom: var(--space-6);
    display: flex;
    align-items: flex-end;
    background: 
    /* 1. White highlight moved to Top Right (was 20% 30%) */
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.12), transparent 55%),
    
    /* 2. Orange Glow moved to Bottom Left (was 85% 80%) */
    radial-gradient(circle at 15% 80%, rgba(255,106,33,0.25), transparent 60%),
    
    /* 3. Base Gradient flipped to 225deg to point Orange toward Bottom Left */
    linear-gradient(225deg, #0A5F55 0%, #0C7567 45%, #FF6A21 100%);

  background-size: 200% 200%, 200% 200%, 100% 100%;
  animation: luxuryGradient 22s ease-in-out infinite;
}

.our-service-hero-section .vc_column-inner > .wpb_wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-content: end;
}

@media (min-width: 1024px) {

  .our-service-hero-section .vc_column-inner > .wpb_wrapper {
    grid-template-columns: 2fr 1fr;
  }

  /* Ensure content sits in first column */
  .service-hero-section .vc_column-inner > .wpb_wrapper > * {
    grid-column: 1;
  }
}

.our-service-hero-title {
    color: var(--color-text-on-accent, #FFFFFF);
    font-family: var(--font-display);
    font-weight: var(--fw-black);
    line-height: var(--line-height-tight);
    font-size: var(--headings-h1);
}

.our-service-hero-intro {
    color: var(--color-text-on-accent, #FFFFFF);
    font-family: var(--font-display);
    font-weight: var(--fw-regular);
    line-height: var(--line-height-normal);
    font-size: var(--headings-h4);
}

.our-service-main-section {
    background: var(--color-primary, #0A5F55);
    padding-block: var(--space-8);
}

.our-service-main-section .vc_column-inner > .wpb_wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.our-service-main-inner-wrapper {
  width: 100%;
}

@media (min-width: 1024px) {
  .our-service-main-inner-wrapper {
    width: 70%;
  }
}

.our-service-main-title {
    font-weight: var(--fw-black);
    font-family: var(--font-display);
    font-size: var(--headings-h2);
    line-height: var(--line-height-tight);
    color: var(--color-text-on-accent, #FFFFFF);
}

.our-service-main-content {
    font-size: var(--headings-h4);
    font-weight: var(--fw-regular);
    font-family: var(--font-display);
    line-height: var(--line-height-tight);
    color: var(--color-text-on-accent, #FFFFFF);
}

.our-service-main-content ul {
  margin-left: 1.3rem;
}

.legal-notice-inner-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .legal-notice-inner-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

div.headline-legal {
    font-size: var(--headings-h4)!important;
    color: var(--color-dark)!important;
    font-family: var(--font-display);
    font-weight: var(--fw-black)!important;
    line-height: var(--line-height-snug)!important;
    margin-top: var(--space-3)!important;
    margin-bottom: var(--space-1)!important;
    padding-top: 0!important;
}

.privacy-policy-content div {
    font-size: var(--headings-h5);
    line-height: var(--line-height-relaxed);
    color: var(--color-dark);
    font-family: var(--font-text);
    font-weight: var(--fw-regular);
    margin-bottom: var(--space-2);
}
