/* style.css */

/*--------------------------------------------------------------
# CSS Variables
--------------------------------------------------------------*/
:root {
  /* Retro & Eco-Minimalist Split-Complementary Palette */
  --primary-color: #D98B4E; /* Warm Muted Orange/Terracotta - Retro, Earthy */
  --primary-color-darker: #b06f3e;
  --secondary-color: #4EADAA; /* Teal - Eco, Retro Accent */
  --secondary-color-darker: #3a8b88;
  --accent-color-1: #F0C987; /* Pale Yellow/Gold - Retro Highlight */
  --accent-color-2: #A8D8B9; /* Pale Mint Green - Eco, Soothing */

  /* Text Colors */
  --text-light: #FFFFFF;
  --text-dark: #333333;
  --text-darker: #222222; /* For prominent titles */
  --text-muted: #707070;
  --text-highlight-bg: rgba(240, 201, 135, 0.2); /* Subtle background for .highlight */

  /* Background Colors */
  --bg-light: #FAF8F5; /* Very Light Beige/Off-white - Minimalist */
  --bg-dark-footer: #3D3A37; /* Dark Brownish Grey - Retro Footer */
  --bg-accent-section: #E8F5E9; /* Very Light Mint for some sections - Eco */
  --bg-card: var(--text-light);

  /* Fonts */
  --font-heading: 'Archivo Black', sans-serif;
  --font-body: 'Roboto', sans-serif;

  /* Borders & Shadows */
  --border-radius-sm: 0.25rem; /* 4px */
  --border-radius-md: 0.5rem;  /* 8px */
  --box-shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
  --box-shadow-strong: 0 6px 15px rgba(0, 0, 0, 0.12);
  --box-shadow-interactive: 0 8px 20px rgba(0, 0, 0, 0.15);
  --retro-border: 2px solid var(--primary-color-darker);

  /* Transitions */
  --transition-smooth: all 0.3s ease-in-out;
  --transition-fast: all 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Global Styles
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.7;
  overflow-x: hidden; /* Prevent horizontal scroll */
  padding-top: 0px !important;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  color: var(--text-darker);
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 700; /* Archivo Black is already bold, this is for consistency if Roboto is used for a heading */
}

h1, .h1 { font-size: 2.8rem; }
h2, .h2 { font-size: 2.2rem; }
h3, .h3 { font-size: 1.8rem; }
h4, .h4 { font-size: 1.5rem; }
h5, .h5 { font-size: 1.25rem; }
h6, .h6 { font-size: 1rem; }

@media (max-width: 768px) {
  h1, .h1 { font-size: 2.2rem; }
  h2, .h2 { font-size: 1.8rem; }
  h3, .h3 { font-size: 1.5rem; }
}

p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-smooth);
}
a:hover {
  color: var(--primary-color-darker);
  text-decoration: underline;
}

::selection {
  background-color: var(--accent-color-1);
  color: var(--text-dark);
}

.highlight {
  background-color: var(--text-highlight-bg);
  padding: 0.1em 0.3em;
  border-radius: var(--border-radius-sm);
  font-weight: bold;
  color: var(--primary-color-darker);
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.section-bg-light {
  background-color: var(--bg-light);
}
.section-bg-dark { /* Example, not used in current HTML */
  background-color: var(--bg-dark-footer);
  color: var(--text-light);
}
.section-bg-dark h1, .section-bg-dark h2, .section-bg-dark h3, .section-bg-dark h4, .section-bg-dark h5, .section-bg-dark h6, .section-bg-dark p {
  color: var(--text-light);
}
.section-bg-accent {
  background-color: var(--bg-accent-section);
}

/*--------------------------------------------------------------
# Buttons (Global)
--------------------------------------------------------------*/
.btn, button, input[type="submit"], input[type="button"] {
  font-family: var(--font-body); /* Or --font-heading for more impact */
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  box-shadow: var(--box-shadow-light);
  display: inline-block;
}

.btn:focus, button:focus, input[type="submit"]:focus, input[type="button"]:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.5); /* Bootstrap focus style adapted */
}

.btn-primary,
button.btn-primary, /* Ensure specificity for button elements */
input[type="submit"].btn-primary,
input[type="button"].btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-light);
}
.btn-primary:hover,
button.btn-primary:hover,
input[type="submit"].btn-primary:hover,
input[type="button"].btn-primary:hover {
  background-color: var(--primary-color-darker);
  border-color: var(--primary-color-darker);
  color: var(--text-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--box-shadow-interactive);
}

.btn-outline-primary,
button.btn-outline-primary,
input[type="submit"].btn-outline-primary,
input[type="button"].btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.btn-outline-primary:hover,
button.btn-outline-primary:hover,
input[type="submit"].btn-outline-primary:hover,
input[type="button"].btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--box-shadow-interactive);
}

.btn-light, /* For buttons on dark/accent backgrounds */
button.btn-light,
input[type="submit"].btn-light,
input[type="button"].btn-light {
  background-color: var(--text-light);
  border-color: var(--text-light);
  color: var(--primary-color);
}
.btn-light:hover,
button.btn-light:hover,
input[type="submit"].btn-light:hover,
input[type="button"].btn-light:hover {
  background-color: var(--accent-color-1);
  border-color: var(--accent-color-1);
  color: var(--text-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--box-shadow-interactive);
}


/*--------------------------------------------------------------
# Layout & Structure
--------------------------------------------------------------*/
.main-container {
  width: 100%;
  margin: 0 auto;
  /* max-width: 1600px; /* Optional max width for very large screens */
}

section {
  padding-top: 4rem; /* approx py-5 from bootstrap */
  padding-bottom: 4rem;
  overflow: hidden; /* For animations */
}

.section-title {
  text-align: center;
  font-size: 2.5rem; /* Custom size */
  color: var(--text-darker);
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}
.section-title::after {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: calc(50% - 30px);
}

.page-subtitle { /* For static pages like About */
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Header / Navbar
--------------------------------------------------------------*/
header.sticky-top .navbar {
  background-color: rgba(250, 248, 245, 0.9); /* var(--bg-light) with alpha for glassmorphism potential */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--text-dark) !important;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color-darker) !important;
  background-color: var(--text-highlight-bg);
}

.navbar-toggler {
  border-color: var(--primary-color);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(217, 139, 78, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  /* linear-gradient is applied inline for dynamic image */
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem; /* Larger for hero */
  color: var(--text-light) !important; /* Strict requirement */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-light) !important; /* Strict requirement */
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-subtitle .highlight { /* Specific highlight for hero */
    background-color: rgba(240, 201, 135, 0.8); /* var(--accent-color-1) with more opacity */
    color: var(--text-darker);
    padding: 0.2em 0.4em;
}

.cta-button {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

/*--------------------------------------------------------------
# Cards (General Styles)
--------------------------------------------------------------*/
.card {
  background-color: var(--bg-card);
  border: 1px solid #e0e0e0; /* Subtle border */
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-light);
  transition: var(--transition-smooth);
  text-align: center; /* For inline/inline-block content */
  display: flex; /* For block children centering */
  flex-direction: column;
  align-items: center; /* Center block children like .card-image */
  height: 100%; /* For consistent card heights in rows */
}
.card:hover {
  transform: translateY(-5px) perspective(1000px) rotateX(2deg) rotateY(1deg);
  box-shadow: var(--box-shadow-strong);
}

.card-image {
  width: 100%;
  height: 200px; /* Fixed height for image containers */
  overflow: hidden;
  border-top-left-radius: var(--border-radius-md);
  border-top-right-radius: var(--border-radius-md);
  margin-bottom: 1rem; /* Space between image and content if image is on top */
}
.card .card-image:first-child { /* If image is the very first child */
    margin-bottom: 0; /* Remove bottom margin if it's directly followed by card-body */
}
.card-img-top, .card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers the area without distortion */
  display: block; /* Remove extra space below image */
}
/* For cards where img is direct child of card, not inside .card-image (Bootstrap default) */
.card > img.card-img-top {
    height: 200px; /* Apply fixed height here too */
    object-fit: cover;
}


.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center content within card-body */
  text-align: center;
  width: 100%;
  flex-grow: 1; /* Allows card body to fill remaining space */
}

.card-title {
  font-family: var(--font-heading);
  color: var(--text-darker);
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex-grow: 1; /* Allows text to take available space before button */
}
.card .btn {
    margin-top: auto; /* Push button to bottom of card body */
}


/* Specific Card Types */
.info-card .card-image { height: 220px; }
.champion-card .card-image { height: 250px; }
.resource-card { background-color: var(--bg-accent-section); }
.resource-card:hover { transform: translateY(-3px); box-shadow: var(--box-shadow-light); }
.resource-card .card-title a { color: var(--secondary-color); }
.resource-card .card-title a:hover { color: var(--secondary-color-darker); }

.pricing-card .card-header {
    background-color: var(--accent-color-2);
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}
.pricing-card .card-header h4 { color: var(--text-darker); }
.pricing-card .border-primary .card-header {
    background-color: var(--primary-color);
}
.pricing-card .border-primary .card-header h4 {
    color: var(--text-light);
}
.pricing-card .card-image { height: 180px; margin-top: 1rem; margin-bottom: 1rem; }
.pricing-card .pricing-card-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 1rem 0;
}
.pricing-card ul li {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

/*--------------------------------------------------------------
# Timeline (History Section)
--------------------------------------------------------------*/
.timeline {
  position: relative;
  padding: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: var(--accent-color-2);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 100%;
}
.timeline-item::after { /* Clearfix */
  content: "";
  display: table;
  clear: both;
}

.timeline-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--bg-light), inset 0 2px 0 rgba(0,0,0,.08), 0 3px 0 4px rgba(0,0,0,.05);
}

.timeline-content {
  position: relative;
  width: calc(50% - 40px); /* Adjust width based on icon and spacing */
  padding: 1.5rem;
  background-color: var(--bg-card); /* Re-use card background */
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-light);
}
.timeline-item:nth-child(odd) .timeline-content {
  float: left;
  text-align: right;
}
.timeline-item:nth-child(even) .timeline-content {
  float: right;
  text-align: left;
}

/* Arrow for timeline content */
.timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 0;
  height: 0;
  border-style: solid;
}
.timeline-item:nth-child(odd) .timeline-content::before {
  right: -10px;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent var(--bg-card);
}
.timeline-item:nth-child(even) .timeline-content::before {
  left: -10px;
  border-width: 10px 10px 10px 0;
  border-color: transparent var(--bg-card) transparent transparent;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 25px; /* Move line to the left */
  }
  .timeline-icon {
    left: 25px; /* Align icon with the line */
  }
  .timeline-content {
    width: calc(100% - 70px); /* Full width minus icon and spacing */
    float: right !important; /* All content to the right */
    text-align: left !important;
  }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    float: right;
    text-align: left;
  }
  .timeline-content::before,
  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
    right: auto;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--bg-card) transparent transparent;
  }
}

/*--------------------------------------------------------------
# Carousels / Sliders (Bootstrap customization)
--------------------------------------------------------------*/
.carousel .carousel-control-prev-icon,
.carousel .carousel-control-next-icon {
  background-color: var(--primary-color);
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  background-size: 50% 50%;
}
.carousel .carousel-control-prev-icon:hover,
.carousel .carousel-control-next-icon:hover {
  background-color: var(--primary-color-darker);
}

.event-card.card { /* Specific styling for event cards in slider */
  box-shadow: var(--box-shadow-strong); /* More prominent for slider items */
  border: none;
}
.event-card .card-img-top, .event-card img.img-fluid { /* for row layout */
    border-top-left-radius: var(--border-radius-md);
    border-bottom-left-radius: var(--border-radius-md);
    border-top-right-radius: 0; /* Reset for row layout */
    height: 100%; /* Fill height of row */
    object-fit: cover;
}
@media (max-width: 767px) { /* Stack image on top on mobile */
    .event-card .card-img-top, .event-card img.img-fluid {
        border-bottom-left-radius: 0;
        border-top-right-radius: var(--border-radius-md);
    }
    .navbar-brand{
      font-size: 22px;
    }
}


.customer-story-card.card {
  background-color: var(--bg-accent-section);
  border: 2px dashed var(--accent-color-2);
}
.customer-story-card img.rounded-circle {
  width: 100px;
  height: 100px;
  border: 3px solid var(--secondary-color);
  padding: 3px;
  margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
.partner-logo {
  max-height: 60px;
  filter: grayscale(100%) opacity(0.7);
  transition: var(--transition-smooth);
}
.partner-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/
#contactForm .form-label, #contactPageForm .form-label {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
#contactForm .form-control, #contactPageForm .form-control {
  border-radius: var(--border-radius-sm);
  padding: 0.75rem 1rem;
  border: 1px solid #ced4da;
  background-color: var(--text-light); /* Ensure good contrast */
  color: var(--text-dark);
  transition: var(--transition-fast);
}
#contactForm .form-control::placeholder, #contactPageForm .form-control::placeholder {
  color: var(--text-muted);
}
#contactForm .form-control:focus, #contactPageForm .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(217, 139, 78, 0.25); /* var(--primary-color) with alpha */
  background-color: var(--text-light);
}

.submit-button {
  min-width: 200px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-section {
  background-color: var(--bg-dark-footer);
  color: var(--text-light);
  padding-top: 3rem;
  padding-bottom: 2rem;
}
.footer-section h5 {
  font-family: var(--font-heading);
  color: var(--accent-color-1);
  margin-bottom: 1rem;
}
.footer-section p {
  color: #ccc; /* Lighter than default --text-light for less emphasis */
  font-size: 0.9rem;
}
.footer-section a {
  color: var(--accent-color-2);
  text-decoration: none;
}
.footer-section a:hover {
  color: var(--text-light);
  text-decoration: underline;
}
.footer-section .list-unstyled li {
  margin-bottom: 0.5rem;
}
.footer-section hr {
  border-color: rgba(255, 255, 255, 0.2);
}
.footer-section .copyright-text {
  font-size: 0.85rem;
  color: #aaa;
}
.footer-section .social-links a {
  color: var(--accent-color-2);
  font-weight: bold;
  margin: 0 0.5rem;
  display: inline-block; /* For margin to work correctly */
  transition: var(--transition-smooth);
}
.footer-section .social-links a:hover {
  color: var(--text-light);
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Specific Page Styles
--------------------------------------------------------------*/

/* Success Page */
body.success-page .main-container { /* If you add a class to body on success.html */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.success-page-container { /* Main content wrapper on success page */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.success-icon {
    font-size: 5rem;
    color: var(--accent-color-2); /* Matches inline style but uses variable */
    margin-bottom: 1.5rem;
}

/* Privacy & Terms Pages - Ensure content doesn't overlap with sticky header */
body.privacy-page main > section:first-of-type,
body.terms-page main > section:first-of-type {
    padding-top: calc(4rem + 70px); /* Initial section padding + approx header height */
}
@media (max-width: 991.98px) { /* Adjust for potentially smaller header on mobile */
    body.privacy-page main > section:first-of-type,
    body.terms-page main > section:first-of-type {
        padding-top: calc(4rem + 60px);
    }
}
/* Generic fix for pages with static content like privacy/terms */
.static-page-content {
    padding-top: 100px; /* Ensure this is applied to the main content container of these pages */
}
/* If privacy/terms have <main class="py-5">, this should be enough: */
.privacy-page main, .terms-page main {
    padding-top: 100px !important; /* Overrides Bootstrap py-5 for the top only */
}
.privacy-page main h1, .terms-page main h1 {
    margin-top: 0; /* Ensure h1 doesn't add extra top margin */
}

/*--------------------------------------------------------------
# Animations (Scroll-based - using Intersection Observer in JS)
# Basic setup for elements to be animated
--------------------------------------------------------------*/
.anim-fade-in,
.anim-fade-in-up,
.anim-fade-in-left,
.anim-fade-in-right {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.anim-fade-in.is-visible {
  opacity: 1;
}

.anim-fade-in-up { transform: translateY(50px); }
.anim-fade-in-up.is-visible { opacity: 1; transform: translateY(0); }

.anim-fade-in-left { transform: translateX(-50px); }
.anim-fade-in-left.is-visible { opacity: 1; transform: translateX(0); }

.anim-fade-in-right { transform: translateX(50px); }
.anim-fade-in-right.is-visible { opacity: 1; transform: translateX(0); }


/*--------------------------------------------------------------
# Cookie Consent Popup (already styled inline in HTML)
# This is just to ensure theme consistency if moved to CSS
--------------------------------------------------------------*/
#cookieConsentPopup {
    font-family: var(--font-body);
    background-color: rgba(40, 40, 40, 0.9) !important; /* Darker, more retro */
    color: var(--text-light) !important;
    border-top: 2px solid var(--primary-color);
}
#cookieConsentPopup p {
    color: var(--text-light) !important;
    margin-bottom: 10px !important;
}
#cookieConsentPopup a {
    color: var(--accent-color-1) !important;
}
#cookieConsentPopup #acceptCookieConsent {
    background-color: var(--primary-color) !important;
    color: var(--text-light) !important;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    font-weight: bold;
    transition: var(--transition-smooth);
}
#cookieConsentPopup #acceptCookieConsent:hover {
    background-color: var(--primary-color-darker) !important;
}

/* Read More Links */
.read-more-link {
    font-weight: bold;
    color: var(--secondary-color);
    display: inline-block;
    margin-top: 0.5rem;
    text-decoration: none;
    position: relative;
    padding-right: 20px; /* Space for arrow */
}
.read-more-link::after {
    content: '→'; /* Arrow icon */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition-fast);
}
.read-more-link:hover {
    color: var(--secondary-color-darker);
    text-decoration: underline;
}
.read-more-link:hover::after {
    right: -5px; /* Move arrow on hover */
}


/* Value cards on About page */
.value-card {
    background-color: var(--bg-light);
    border: 1px solid var(--accent-color-2);
}
.value-card .value-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Styling for the Community section buttons */
.community-button {
    margin: 0.5rem;
}

/* Ensure good contrast for section titles on specific backgrounds */
#community.section-bg-accent .section-title {
    color: var(--text-darker); /* Ensure dark title on light accent bg */
}
#community.section-bg-accent .section-title::after {
    background: var(--primary-color);
}
#community.section-bg-accent .lead, #community.section-bg-accent p {
    color: var(--text-dark);
}