/* Base Styles */
:root {
    --primary-dark-green: #00613B;  /* Dark green from logo */
    --primary-medium-green: #4D8D64; /* Medium green from logo */
    --primary-light-green: #7AAA7E; /* Light green from logo */
    --primary-lightest-green: #d0f0d3;
    --text-color: #212121;
    --background-color: #FFFFFF;
    --light-gray: #F4F4F4;
    --medium-gray: #8D9495;
    --border-radius: 4px;
    --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Visuelt', 'Helvetica', sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    background-color: var(--background-color);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.25rem; /* 36px */
}

h2 {
    font-size: 1.75rem; /* 28px */
}

h3 {
    font-size: 1.5rem; /* 24px */
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    margin: 0 auto;
}

.about-us-container {
    font-family: 'Arial', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
}

.about-us-hero {
    padding: 80px 0;
    text-align: center;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-illustration {
    max-width: 400px;
    margin-bottom: 30px;
}

.hero-illustration img {
    width: 100%;
    height: auto;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-us-hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-illustration {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-us-hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-illustration {
        max-width: 250px;
    }
}


.no-wrap {
    white-space: nowrap;
}

.divider {
    height: 1px;
    background-color: var(--light-gray);
    margin: 3rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
    white-space: nowrap;
}

.btn svg {
    margin-left: 0.75rem;
    width: 16px;
    height: 16px;
}

.btn-white {
    background-color: var(--background-color);
    color: var(--text-color);
    border-color: var(--primary-dark-green);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background-color: #f0f0f0;
}

.btn-primary {
    background-color: var(--primary-dark-green);
    color: var(--background-color);
    border-color: var(--primary-dark-green);
}

.btn-primary:hover {
    opacity: 0.9;
}

.plain-button {
    display: inline-flex;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-dark-green);
    font-weight: 500;
}

.plain-button svg {
    margin-left: 0.5rem;
}

/* Header */
/* Base styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
    display: flex;
    align-items: center;
    height: 80px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    position: relative;
}

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

.logo img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

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

.primary-nav .nav-list li {
    margin-right: 25px;
}

.primary-nav .nav-list li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.primary-nav .nav-list li a:hover {
    color: #006B45; /* Your brand green color */
}

.secondary-nav .nav-list {
    align-items: center;
}

.phone-number {
    display: flex;
    align-items: center;
    color: #006B45;
    text-decoration: none;
    font-weight: 600;
    margin-right: 20px;
}

.phone-number svg {
    margin-right: 8px;
    fill: #006B45;
}

.quote-button {
    background-color: #006B45;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.quote-button:hover {
    background-color: #00543a;
}

/* Mobile menu toggle button - hidden on desktop */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-icon {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: #333;
}

.hamburger-icon:before,
.hamburger-icon:after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #333;
    transition: transform 0.3s;
}

.hamburger-icon:before {
    top: -8px;
}

.hamburger-icon:after {
    bottom: -8px;
}

/* Mobile styles for side drawer */
@media (max-width: 768px) {
    .header-content {
        justify-content: center;
        padding: 10px 0;
    }

    .logo {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        margin: 0;
        padding: 10px;
    }

    .nav-container {
        position: fixed;
        top: 0;
        right: -280px; /* Start off-screen */
        height: 100vh;
        width: 280px;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        display: block;
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 5;
    }

    .nav-container.active {
        right: 0; /* Slide in from right */
    }

    .primary-nav, .secondary-nav {
        width: 100%;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .primary-nav .nav-list li,
    .secondary-nav .nav-list li {
        margin: 0;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .secondary-nav .nav-list li:last-child {
        border-bottom: none;
        padding-top: 15px;
    }

    .phone-number {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .quote-button {
        display: block;
        text-align: center;
        width: 100%;
    }

    /* Overlay effect when menu is open */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 4;
    }

    .menu-overlay.active {
        display: block;
    }

    /* Animation for hamburger to X */
    .mobile-menu-toggle.active .hamburger-icon {
        background-color: transparent;
    }

    .mobile-menu-toggle.active .hamburger-icon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .mobile-menu-toggle.active .hamburger-icon:after {
        transform: rotate(-45deg);
        bottom: 0;
    }
}
.logo {
    z-index: 10;
}

.menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

.dropdown-chevron {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 0.5rem;
    position: relative;
}

.dropdown-chevron::before {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    top: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-list a {
    color: black;
    font-weight: 500;
    text-decoration: none;
}

.nav-list a:hover {
    color: var(--primary-dark-green);
}

.primary-nav, .secondary-nav {
    display: flex;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

/* Hero Section */
.hero {
    background-color: #fff;
    padding: 0 0 80px; /* Increased padding to make room for buttons */
    position: relative;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.hero-image img {
    width: 75%;
    height: auto;
}

/* Base styles for the header */
.header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    top: 0;
    z-index: 100;
  }

  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0;
  }

  .logo img {
    display: block;
  }

  .nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-list li {
    margin-left: 20px;
  }

  .phone-number {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-weight: 600;
  }

  .phone-number svg {
    margin-right: 5px;
  }

  .quote-button {
    display: inline-block;
    background-color: #2a75bb; /* Adjust color to match your brand */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
  }

  .quote-button:hover {
    background-color: #1e5c94; /* Darker shade for hover */
  }

  /* Responsive styles */
  @media (max-width: 768px) {
    .header-content {
      flex-direction: column;
      padding: 10px 0;
    }

    .logo {
      margin-bottom: 10px;
    }

    .logo img {
      width: 120px;
      height: auto;
    }

    .secondary-nav {
      width: 100%;
    }

    .nav-list {
      flex-direction: column;
      width: 100%;
    }

    .nav-list li {
      margin: 8px 0;
      margin-left: 0;
      width: 100%;
      text-align: center;
    }

    .phone-number {
      justify-content: center;
    }

    .quote-button {
      display: block;
      width: 100%;
      text-align: center;
      padding: 12px 20px;
    }
  }

  /* Alternative mobile layout (side by side buttons) */
  @media (max-width: 768px) and (min-width: 480px) {
    .nav-list {
      flex-direction: row;
    }

    .nav-list li {
      margin: 8px;
      width: calc(50% - 16px);
    }
  }

  /* Small mobile devices (under 480px) */
  @media (max-width: 480px) {
    .logo img {
      width: 100px;
      height: auto;
    }

    .phone-number {
      font-size: 14px;
    }

    .quote-button {
      font-size: 14px;
      padding: 10px 15px;
    }
  }

.tv-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--background-color);
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.hero-title {
    font-size: 2.5rem;
    margin: 1.5rem 0;
    max-width: 800px;
    color: var(--primary-dark-green);
}

.hero-buttons {
    position: relative;
    z-index: 10; /* Make sure it's above the divider */
    margin-top: 1.5rem;
}

.hero-links {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0 auto;
    max-width: 1000px;
    padding: 0;
}

.hero-links li {
    flex: 0 1 auto;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-links {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-links li {
        width: 100%;
    }

    .hero {
        padding-bottom: 100px; /* More padding on mobile */
    }
}

.edge-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1; /* Lower z-index so buttons appear above */
}

.edge-divider svg {
    width: 100%;
    height: auto;
    display: block;
}

.awards {
    padding: 4rem 0 2rem;
    background-color: white;
    overflow: hidden; /* Prevent horizontal scrolling */
    position: relative;
}

.awards-content {
    margin-bottom: 2rem;
    text-align: center;
}

.awards-text {
    max-width: 800px;
    margin: 0 auto;
}

.awards-text h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--primary-dark-green);
    font-weight: 700;
}

.awards-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
}

.awards-image {
    text-align: right;
}

.awards-image img {
    max-width: 100%;
    height: auto;
}

.trustpilot-wrapper {
    margin: 2rem 0;
}

.trustpilot-link {
    display: block;
    text-align: center;
    color: var(--primary-dark-green);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-decoration: none;
}

.trustpilot-link:hover {
    text-decoration: underline;
}

.trustpilot-container {
    display: flex;
    align-items: center;
    position: relative;
}

.trustpilot-reviews {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    padding: 1.5rem 0;
    margin: 0 auto;
}

.trustpilot-slider {
    display: flex;
    gap: 1rem;
    transition: transform 0.5s ease;
    padding: 0 1rem;
}


.trustpilot-slider::-webkit-scrollbar {
    height: 6px;
}

.trustpilot-slider::-webkit-scrollbar-track {
    background: #f7f7f7;
}

.trustpilot-slider::-webkit-scrollbar-thumb {
    background-color: #ddd;
    border-radius: 6px;
}

.trustpilot-review {
    flex: 0 0 280px;
    background-color: white;
    border-radius: 4px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}


.trustpilot-review {
    flex: 0 0 280px;
    background-color: white;
    border-radius: 4px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.trustpilot-verified {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.trustpilot-review h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.trustpilot-review p {
    font-size: 0.85rem;
    color: #444;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    flex-grow: 1;
}

.trustpilot-reviewer {
    font-size: 0.8rem;
    color: #666;
    margin-top: auto;
}

.trustpilot-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem 0.5rem;
    margin-top: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trustpilot-rating {
    font-size: 0.85rem;
    color: #555;
}

.trustpilot-logo {
    height: 35px;
    width: auto;
}

.quote-button {
    background-color: var(--primary-dark-green); /* Green background */
    color: white;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    /* margin-left: 15px; */
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.quote-button:hover {
    background-color: var(--primary-medium-green);
    text-decoration: none !important;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
}


.scroll-btn {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    color: #666;
}

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

.scroll-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.scroll-left {
    left: 10px;
}

.scroll-right {
    right: 10px;
}



@media (max-width: 1024px) {
    .awards-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .awards-text p {
        max-width: 100%;
    }

    .awards-image {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .awards {
        padding: 3rem 0 1.5rem;
    }

    .awards-text h2 {
        font-size: 1.75rem;
    }

    .trustpilot-footer {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .trustpilot-rating {
        text-align: center;
    }
}
/* Alert message styles */
.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.alert strong {
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.alert-success {
    background-color: #e6f7ef;
    border-left: 4px solid var(--primary-medium-green);
    color: var(--primary-dark-green);
}

.alert-danger {
    background-color: #fde8e8;
    border-left: 4px solid #e53e3e;
    color: #c53030;
}

/* Button states */
.btn-submit.success {
    background-color: var(--primary-dark-green);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Loading spinner for button */
.btn-submit .spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 576px) {
    .trustpilot-review {
        width: 240px;
    }
}

.services {
    padding: 3rem 0;
    background-color: #f8f8f8;
}

.products-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.product-item {
    display: flex;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-image {
    padding: 1.5rem;
    height: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
}

.product-image img {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
}

.product-content {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--primary-dark-green);
}

.product-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-yellow {
    background-color: var(--primary-medium-green);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    margin-top: auto;
}

.btn-yellow:hover {
    background-color: var(--primary-dark-green);
}

.btn-yellow svg {
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .products-list {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 180px;
    }
}

/* Support Section */
.support-section {
    padding: 4rem 0 3.5rem;
    background-color: #fff;
}

.support-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.support-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    max-width: 40%;
}

.support-image img {
    max-width: 100%;
    height: auto;
}

.divider {
    height: 1px;
    background-color: #e5e5e5;
    margin: 0;
}

@media (max-width: 992px) {
    .support-content {
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .support-text,
    .support-image {
        width: 100%;
        max-width: 100%;
    }

    .support-image {
        justify-content: center;
    }

    .support-image img {
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .support-section {
        padding: 3rem 0 2.5rem;
    }

    .support-text h2 {
        font-size: 1.75rem;
    }

    .phone-number {
        font-size: 1.25rem;
    }
}

.support-text {
    flex: 1;
}

.support-text h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark-green);
    font-weight: 700;
}

.support-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.specialists {
    margin-top: 2rem;
}

.specialists-wrapper {
    margin-top: 1.5rem;
}

.specialist-avatars {
    display: flex;
    margin-bottom: 1.5rem;
}

.specialist-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -12px;
}

.specialist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info {
    margin-top: 0.5rem;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark-green);
    text-decoration: none;
}

.phone-number svg {
    color: var(--primary-dark-green);
}

.line-status {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.contact-divider {
    height: 1px;
    background-color: var(--medium-gray);
    margin: 1.5rem 0;
    opacity: 0.5;
}

.status-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--primary-dark-green);
    border-radius: 50%;
    margin-right: 8px;
}

.status-text {
    font-size: 0.95rem;
    color: var(--primary-dark-green);
    font-weight: 500;
}

.phone-number.large {
    font-size: 1.5rem;
    font-weight: 500;
}

.open-indicator {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
}

.indicator-blob {
    width: 10px;
    height: 10px;
    background-color: var(--primary-dark-green);
    border-radius: 50%;
    margin-right: 0.5rem;
}

.indicator-text {
    font-size: 0.875rem;
    color: var(--primary-dark-green);
}

/* Charity Section */
.charity-section {
    padding: 3rem 0;
}

.charity-banner {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.charity-banner h2 {
    font-size: 2rem;
    color: var(--primary-dark-green);
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.charity-banner p {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    max-width: 680px;
    margin: 0 auto 2rem;
}

.charities-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
    max-width: 900px;
}

.charities-list img {
    height: auto;
    max-height: 30px;
    width: auto;
    object-fit: contain;
}

.charities-list span {
    font-size: 0.95rem;
    color: #333;
}

@media (max-width: 768px) {
    .charity-banner {
        padding: 2rem 1.5rem;
    }

    .charity-banner h2 {
        font-size: 1.75rem;
    }

    .charities-list {
        gap: 1.5rem;
    }

    .charities-list img {
        max-height: 25px;
    }
}

.guides-section {
    padding: 4rem 0;
    background-color: var(--primary-light-green);
    position: relative;
    overflow: hidden;
    background-image: url('./assets/yellow-dot-pattern.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.guides-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.guides-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.guides-header p {
    font-size: 1rem;
    line-height: 1.5;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

.guides-texture-1,
.guides-texture-2,
.guides-texture-3 {
    position: absolute;
    pointer-events: none;
}

.guides-texture-1 {
    top: -50px;
    right: -50px;
    width: 270px;
    height: 270px;
    background-image: url('./assets/blob-white-1.webp');
    background-size: contain;
    transform: rotate(45deg);
}

.guides-texture-2 {
    top: 50px;
    left: -100px;
    width: 330px;
    height: 330px;
    background-image: url('./assets/blob-dots-yellow-half.webp');
    background-size: contain;
}

.guides-texture-3 {
    bottom: -50px;
    right: 20%;
    width: 260px;
    height: 260px;
    background-image: url('./assets/blob-dots-yellow-half.webp');
    background-size: contain;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.guide-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    transition: transform 0.2s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
}

.guide-card-highlighted {
    border: 2px solid var(--primary-dark-green);
}

.guide-card h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.guide-card h3 a {
    color: var(--primary-dark-green);
    text-decoration: none;
}

.guide-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.guide-card h3 a:hover {
    text-decoration: underline;
}

.guide-link {
    color: var(--primary-dark-green);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    display: inline-block;
}

.guide-link:hover {
    text-decoration: underline;
}

.guide-image {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 200px;
}

.guide-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.guides-footer {
    text-align: center;
}

.view-all-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}

.view-all-link:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }

    .guide-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .guides-header h2 {
        font-size: 1.75rem;
    }
}

.guide-content > div:first-child {
    padding: 1.5rem;
    flex-grow: 1;
}

.guide-content > div:last-child {
    height: 180px;
    overflow: hidden;
}

.guide-content > div:last-child img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-label {
    display: flex;
    align-items: center;
    color: var(--primary-dark-green);
    font-weight: 500;
    margin-top: 1rem;
}

.guide-label svg {
    margin-left: 0.5rem;
}

.guides-button-wrapper {
    text-align: center;
    margin-top: 2rem;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background-color: white;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-column h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark-green);
    margin-bottom: 1.25rem;
}

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

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

.footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-dark-green);
}

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

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

.footer-service-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primary-dark-green);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-service-links svg {
    color: var(--primary-dark-green);
}

.contact-info {
    margin-bottom: 1.5rem;
}

.phone-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark-green);
    margin-bottom: 0.5rem;
}

.address {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

.footer-illustration {
    text-align: right;
    margin-top: 2rem;
}

.footer-illustration img {
    max-width: 180px;
    height: auto;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: #000;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: var(--primary-dark-green); /* Updated to use the green from your logo */
}

.copyright {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    max-width: 800px;
}

/* Fix for footer service links */
.footer-service-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Service link styling */
.service-link {
    display: flex;
    align-items: center;
}

.service-link svg {
    margin-left: 0.5rem;
    width: 16px;
    height: 16px;
}

/* Footer blob background */
.footer-blob {
    width: 100%;
    height: 200px;
    background-image: url('./assets/footer-blob.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.legal-divider .divider {
    margin: 1rem 0;
}

.trustpilot-stars {
    color: var(--primary-medium-green);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    letter-spacing: 1px;
}


/* Status indicators (online/open) */
.status-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--primary-dark-green); /* Changed from standard green to match your logo */
    border-radius: 50%;
    margin-right: 8px;
}

.status-text {
    font-size: 0.95rem;
    color: var(--primary-dark-green); /* Changed from standard green to match your logo */
    font-weight: 500;
}

/* Phone number styling updates */
.phone-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark-green); /* In the header, this is white; elsewhere it's green */
    text-decoration: none;
}

.phone-number svg {
    color: var(--primary-dark-green); /* In the header, this is white; elsewhere it's green */
}

/* In the header, override phone number color */
.header .phone-number,
.header .phone-number svg {
    color: #4d8d64;
}

/* Button yellow replacement - now using your medium green */
.btn-yellow {
    background-color: var(--primary-medium-green);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    margin-top: auto;
}

.btn-yellow:hover {
    background-color: var(--primary-dark-green);
}

/* Questionnaire specific styles */
.questionnaire-container {
    min-height: calc(100vh - 70px);
    padding: 2rem 0 4rem;
    background-color: #fff;
}

#questionnaire-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Progress bar */
.progress-container {
    width: 100%;
    height: 6px;
    background-color: #f4f4f4;
    border-radius: 3px;
    margin-bottom: 2rem;
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: var(--primary-medium-green);
    border-radius: 3px;
    transition: width 0.4s ease;
}

/* Question styling */
.question-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.question-image {
    max-width: 300px;
    margin-bottom: 2rem;
}

.question-image img {
    width: 100%;
    height: auto;
}

.question-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.2;
}

/* Only the changed CSS styles */

/* Options container and cards */
.options-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 600px;
    margin-bottom: 2rem;
}

.option-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--primary-dark-green);
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.2s ease;
    aspect-ratio: 1 / 1;
    min-width: 200px;
    max-width: 230px;
}

.option-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-medium-green);
}

.option-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.5rem;
}

.option-text {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    flex-grow: 0;
}

.option-description {
    font-size: 0.9rem;
    color: #555;
    text-align: center;
    line-height: 1.4;
    margin-top: auto;
}

/* Back button styling */
.back-button {
    color: #666;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    padding: 0.5rem;
    display: inline-block;
    text-decoration: none;
    transition: color 0.2s ease;
}

.back-button:hover {
    color: var(--primary-dark-green);
    text-decoration: underline;
}

/* Button Submit */
.btn-submit {
    width: 100%;
    background-color: var(--primary-medium-green);
    color: #fff;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.2s ease;
}

.btn-submit:hover {
    background-color: var(--primary-dark-green);
}

/* Responsive styles */
@media (max-width: 768px) {
    .options-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .option-card {
        width: 100%;
        max-width: 100%;
        aspect-ratio: auto;
        height: auto !important;
        min-height: 120px;
    }

    .option-content {
        padding: 1.25rem;
    }

    .option-text {
        font-size: 1.25rem;
    }
}

/* Contact form styling */
#contact-form {
    max-width: 600px;
    margin: 0 auto;
}

#contact-form h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    text-align: center;
}

.form-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
}

.checkbox-label {
    font-size: 0.9rem;
    color: #555;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-medium-green);
    color: #fff;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.2s ease;
}

.btn-submit:hover {
    background-color: var(--primary-dark-green);
}

.terms-text {
    font-size: 0.8rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
}

.terms-text a {
    color: var(--primary-dark-green);
    text-decoration: none;
}

.call-us-box {
    margin-top: 2rem;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-align: center;
}

.call-us-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.phone-link {
    font-weight: 700;
    color: var(--primary-dark-green);
    text-decoration: none;
}

.hours-text {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive styles */
@media (max-width: 768px) {
    .question-title {
        font-size: 1.75rem;
    }

    .options-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .option-card {
        width: 100%;
        max-width: 100%;
    }

    .option-button {
        width: 100%;
        padding: 1.25rem 1rem;
    }
}

@media (max-width: 576px) {
    .questionnaire-container {
        padding: 1rem 0 3rem;
    }

    #questionnaire-wrapper {
        padding: 1rem 0.5rem;
    }

    .question-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .question-image {
        max-width: 220px;
        margin-bottom: 1.5rem;
    }

    #contact-form h2 {
        font-size: 1.5rem;
    }

    .form-description {
        font-size: 0.95rem;
    }
}

.mission-section {
    background-color: var(--primary-light-green);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-medium-green) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
}

.mission-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--primary-medium-green) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.mission-image {
    flex: 1;
    max-width: 40%;
}

.mission-image img {
    width: 100%;
    height: auto;
}

.mission-text {
    flex: 1;
    max-width: 60%;
}

.section-label {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--primary-dark-green);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-color);
}

.section-description p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--text-color);
}

.section-description p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .mission-content {
        flex-direction: column;
        gap: 40px;
    }

    .mission-image, .mission-text {
        max-width: 100%;
    }

    .mission-image {
        order: 1;
        max-width: 70%;
        margin: 0 auto;
    }

    .mission-text {
        order: 2;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .section-description p {
        font-size: 16px;
    }

    .mission-image {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .mission-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .mission-image {
        max-width: 100%;
    }
}
.awards-section {
    background-color: var(--primary-lightest-green);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}


.awards-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-color);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.award-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.award-logo {
    width: 100%;
    max-width: 180px;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.award-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--text-color);
}

.award-info p {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color);
}

@media (max-width: 1024px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 768px) {
    .awards-section {
        padding: 60px 0 80px;
    }

    .awards-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .awards-section {
        padding: 50px 0 70px;
    }

    .awards-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}
.services-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.service-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    max-width: 45%;
}

.service-image img {
    width: 100%;
    height: auto;
}

.service-content {
    flex: 1;
    max-width: 55%;
}

.service-category {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--primary-dark-green);
}

.service-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-color);
}

.service-description p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--text-color);
}

.service-description p:last-child {
    margin-bottom: 0;
}

.text-link {
    color: var(--primary-dark-green);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--primary-dark-green);
    transition: var(--transition);
}

.text-link:hover {
    opacity: 0.8;
}

@media (max-width: 992px) {
    .service-item,
    .service-item.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }

    .service-image,
    .service-content {
        max-width: 100%;
    }

    .service-image {
        order: 1;
        max-width: 80%;
        margin: 0 auto;
    }

    .service-content {
        order: 2;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .service-item {
        margin-bottom: 60px;
    }

    .service-title {
        font-size: 28px;
    }

    .service-image {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 40px 0;
    }

    .service-title {
        font-size: 24px;
    }

    .service-description p {
        font-size: 15px;
    }
}

.charity-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.charity-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.charity-text {
    flex: 1;
    max-width: 55%;
}

.charity-image {
    flex: 1;
    max-width: 45%;
}

.charity-image img {
    width: 100%;
    height: auto;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--primary-dark-green);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-color);
}

.section-description p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--text-color);
}

.charity-cta {
    margin-top: 10px;
}

.text-link {
    color: var(--primary-dark-green);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--primary-dark-green);
    transition: var(--transition);
}

.text-link:hover {
    opacity: 0.8;
}

@media (max-width: 992px) {
    .charity-content {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .charity-text,
    .charity-image {
        max-width: 100%;
    }

    .charity-image {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .charity-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 30px;
    }

    .charity-image {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .charity-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .section-description p {
        font-size: 15px;
    }
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--primary-dark-green);
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-color);
}

.section-description p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    color: var(--text-color);
}

.section-description p:last-child {
    margin-bottom: 0;
}

.text-link {
    color: var(--primary-dark-green);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--primary-dark-green);
    transition: var(--transition);
}

.text-link:hover {
    opacity: 0.8;
}

/* People Section Styles */
.people-section {
    padding: 80px 0;
    background-color: var(--primary-light-green);
    position: relative;
    overflow: hidden;
}

.people-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-medium-green) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
}

.people-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--primary-medium-green) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
}

.people-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.people-image {
    flex: 1;
    max-width: 45%;
}

.people-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.people-image figcaption {
    font-size: 14px;
    margin-top: 12px;
    color: var(--text-color);
}

.people-text {
    flex: 1;
    max-width: 55%;
}

/* Investors Section Styles */
.investors-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.investors-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.investors-image {
    flex: 1;
    max-width: 45%;
}

.investors-image img {
    width: 100%;
    height: auto;
}

.investors-text {
    flex: 1;
    max-width: 55%;
}

/* Directors Section Styles */
.directors-section {
    padding: 80px 0;
    background-color: var(--primary-lightest-green);
    text-align: center;
}

.directors-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-color);
}

.funeral-directors-title {
    margin-top: 80px;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.directors-grid:last-of-type {
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 0;
}

.director-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.director-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
}

.director-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.director-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-color);
}

.director-position {
    font-size: 14px;
    color: var(--medium-gray);
    max-width: 150px;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .directors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .directors-grid:last-of-type {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .people-content,
    .investors-content {
        flex-direction: column;
        gap: 40px;
    }

    .people-image,
    .people-text,
    .investors-image,
    .investors-text {
        max-width: 100%;
    }

    .people-image,
    .investors-image {
        max-width: 80%;
        margin: 0 auto;
    }

    .directors-grid:last-of-type {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .people-section,
    .investors-section,
    .directors-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .people-image,
    .investors-image {
        max-width: 100%;
    }

    .directors-grid,
    .directors-grid:last-of-type {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .funeral-directors-title {
        margin-top: 60px;
    }
}

@media (max-width: 576px) {
    .people-section,
    .investors-section,
    .directors-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .directors-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

.cta-section {
    background-color: var(--background-color);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cta-text {
    flex: 1;
    max-width: 50%;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.cta-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-color);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-medium-green);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 24px;
}

.cta-button:hover {
    background-color: var(--primary-dark-green);
}

.trustpilot-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 15px;
    color: var(--text-color);
}

.reviews-divider {
    color: var(--medium-gray);
}

.trustpilot-stars {
    display: block;
    margin-top: 8px;
}

.trustpilot-stars img {
    height: 24px;
}

.cta-image {
    flex: 1;
    max-width: 50%;
}

.illustration-container {
    position: relative;
    max-width: 100%;
}

.illustration-container img {
    width: 100%;
    height: auto;
}

.video-button {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background-color: transparent;
    border: none;
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: var(--transition);
    font-size: 21px;
    text-decoration: underline;
}

.play-icon {
    margin-right: 8px;
    font-size: 12px;
}

.video-button:hover {
    text-decoration: none;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background-color: var(--background-color);
    border-radius: 8px;
    overflow: hidden;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.close-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .cta-content {
        flex-direction: column;
        gap: 40px;
    }

    .cta-text,
    .cta-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-description {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 40px 0;
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}

.pricing-section {
    padding: 80px 0;
    background-color: var(--primary-light-green);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-medium-green) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
}

.pricing-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--primary-medium-green) 0%, transparent 70%);
    opacity: 0.3;
    border-radius: 50%;
}

.pricing-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
    position: relative;
    z-index: 2;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    flex: 1;
    max-width: 400px;
    box-shadow: var(--box-shadow);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.card-description {
    min-height: 80px;
    margin-bottom: 24px;
}

.card-description p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
}

.card-price {
    margin-bottom: 24px;
}

.price-main {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark-green);
    margin-bottom: 4px;
}

.price-couples {
    font-size: 14px;
    color: var(--text-color);
}

.card-button {
    display: block;
    width: 100%;
    background-color: white;
    border: 2px solid var(--primary-dark-green);
    color: var(--primary-dark-green);
    text-align: center;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 30px;
}

.card-button:hover {
    background-color: var(--primary-dark-green);
    color: white;
}

.card-extras {
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
}

.extra-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.extra-item:last-child {
    margin-bottom: 0;
}

.extra-name {
    font-size: 14px;
    color: var(--text-color);
}

.extra-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        max-width: 100%;
        width: 100%;
    }

    .card-description {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .pricing-section {
        padding: 40px 0;
    }

    .pricing-title {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .pricing-card {
        padding: 20px;
    }

    .card-title {
        font-size: 22px;
    }
}
.awards-recognition-section {
    padding: 80px 0;
    background-color: var(--light-cream);
    border-bottom: 1px solid #E5E5E5;
}

.awards-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.awards-text {
    flex: 1;
    max-width: 60%;
}

.awards-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-color);
}

.awards-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.awards-badges {
    flex: 1;
    max-width: 40%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.award-badge {
    max-width: 180px;
}

.award-badge img {
    width: 100%;
    height: auto;
}

/* BENEFITS SECTION */
.benefits-section {
    padding: 80px 0;
    background-color: var(--primary-lightest-green);
}

.benefits-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-color);
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.benefit-image {
    flex: 0 0 200px;
}

.benefit-image img {
    width: 100%;
    height: auto;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.benefit-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

.benefits-cta {
    text-align: center;
    margin-top: 40px;
}

.cta-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-medium-green);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--primary-dark-green);
}

/* FAQ SECTION */
.faq-section {
    padding: 80px 0;
    background-color: var(--background-color);
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-color);
}

.faq-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.faq-questions {
    flex: 1;
    max-width: 60%;
}

.faq-item {
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 16px;
    transition: var(--transition);
}

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

.faq-answer {
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-more {
    margin: 30px 0;
}

.view-more-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark-green);
    text-decoration: none;
    transition: var(--transition);
}

.view-more-link:hover {
    opacity: 0.8;
}

.faq-contact {
    margin-top: 40px;
}

.contact-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-color);
}

.contact-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
}

.contact-images {
    display: flex;
    gap: 10px;
}

.specialist-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.faq-illustration {
    flex: 1;
    max-width: 40%;
    top: 30px;
    margin: 0px;
}

.faq-illustration img {
    width: 100%;
    height: auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .awards-content {
        flex-direction: column;
        gap: 40px;
    }

    .awards-text,
    .awards-badges {
        max-width: 100%;
    }

    .awards-badges {
        display: flex;
        justify-content: center;
        gap: 30px;
    }

    .benefit-item {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .benefit-image {
        max-width: 180px;
        margin: 0 auto;
    }

    .faq-content {
        flex-direction: column;
    }

    .faq-questions,
    .faq-illustration {
        max-width: 100%;
    }

    .faq-illustration {
        order: -1;
        max-width: 300px;
        margin: 0 auto 40px;
    }
}

@media (max-width: 768px) {
    .awards-recognition-section,
    .benefits-section,
    .faq-section {
        padding: 60px 0;
    }

    .awards-title,
    .benefits-title,
    .faq-title {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .awards-badges {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .award-badge {
        max-width: 150px;
    }
}

@media (max-width: 576px) {
    .awards-recognition-section,
    .benefits-section,
    .faq-section {
        padding: 40px 0;
    }

    .awards-title,
    .benefits-title,
    .faq-title {
        font-size: 26px;
    }

    .faq-question {
        font-size: 16px;
    }
}
.final-cta-section {
    padding: 60px 0;
    background-color: var(--primary-light-green);
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--text-color);
}

.final-cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-dark-green);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid white;
}

.final-cta-button:hover {
    background-color: transparent;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 50px 0;
    }

    .final-cta-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .final-cta-section {
        padding: 40px 0;
    }

    .final-cta-title {
        font-size: 26px;
    }

    .final-cta-button {
        width: 100%;
        max-width: 280px;
    }
}
