/*
  Theme: Investimentos em Ações no Brasil
  Design System: Modern
  Trend: Asymmetric Balance
  Color Scheme: Split-Complementary
  Animation Style: Particle Animation (supported)
  Fonts: Montserrat (Headings), Merriweather (Body)
*/

:root {
  /* Colors - Split-Complementary (Blue base, Yellow-Orange & Red-Orange/Teal accents) */
  --primary-color: #00509E; /* Deep Blue - Corporate, Trustworthy */
  --primary-color-darker: #003E7A; /* Darker shade for hovers/depth */
  --secondary-color: #FDC500; /* Golden Yellow - Accent, CTAs, Energy */
  --secondary-color-darker: #E0A800; /* Darker shade for hovers */
  --accent-color-1: #007BA7; /* Cerulean/Teal - Secondary accent, modern feel */
  --accent-color-2: #4CAF50; /* Green - For success, sustainability, positive indicators */
  --accent-color-danger: #D9534F; /* Red for alerts or negative indicators if needed */

  --text-color-dark: #222222; /* Primary text on light backgrounds */
  --text-color-medium: #555555; /* Secondary text */
  --text-color-light: #FFFFFF; /* Text on dark backgrounds (e.g., Hero, primary buttons) */
  --text-color-on-primary: #FFFFFF;
  --text-color-on-secondary: #003E7A; /* Dark blue text on yellow buttons for contrast */

  --background-light: #F4F7F5; /* Main light background for sections */
  --background-medium: #E6F0E4; /* Slightly different light bg, e.g., for sustainability */
  --background-dark-section: #0A192F; /* Very dark blue, for high contrast sections like stats */
  --background-card: #FFFFFF;
  --border-color: #DDE2E8; /* Subtle border color */
  --border-color-light: #E0E0E0;

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Merriweather', serif;
  --base-font-size: 16px;
  --line-height-base: 1.7;
  --line-height-heading: 1.3;

  /* Spacing */
  --spacing-xs: 0.25rem; /* 4px */
  --spacing-sm: 0.5rem;  /* 8px */
  --spacing-md: 1rem;    /* 16px */
  --spacing-lg: 2rem;    /* 32px */
  --spacing-xl: 3rem;    /* 48px */
  --spacing-xxl: 4rem;   /* 64px */

  /* Borders & Shadows */
  --border-radius-sm: 5px;
  --border-radius-md: 8px;
  --box-shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
  --box-shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.12);
  --box-shadow-strong: 0 8px 25px rgba(0,0,0,0.15);

  /* Transitions */
  --transition-fast: 0.2s ease-in-out;
  --transition-medium: 0.3s ease-in-out;

  /* Header */
  --header-height: 80px;
  --header-height-mobile: 60px;
}

/* Global Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-color-dark);
  background-color: var(--background-light);
  line-height: var(--line-height-base);
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.site-wrapper {
  overflow-x: hidden; /* Ensure no overflow from animations or asymmetric layouts */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-color-dark);
  font-weight: 700;
  line-height: var(--line-height-heading);
  margin-bottom: var(--spacing-md);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05); /* Subtle shadow for depth */
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

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

p {
  margin-bottom: var(--spacing-md);
  color: var(--text-color-medium);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

img.responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-md);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

/* Utility Classes */
.section-padding {
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
}

.section-padding-large {
  padding-top: var(--spacing-xxl);
  padding-bottom: var(--spacing-xxl);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.light-text { color: var(--text-color-light) !important; } /* For text on dark backgrounds */
.light-text h1, .light-text h2, .light-text h3, .light-text h4, .light-text p {
    color: var(--text-color-light) !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  font-size: 2.5rem;
  color: var(--text-color-dark);
  position: relative;
}
.section-title.light-text {
  color: var(--text-color-light);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  margin: var(--spacing-sm) auto 0;
  border-radius: 2px;
}
.section-title.text-left::after{
    margin-left: 0;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-lg);
    color: var(--text-color-medium);
    font-size: 1.1rem;
}
.section-subtitle.light-text {
    color: rgba(255,255,255,0.85);
}


/* Buttons - Global Styles */
.btn, button, input[type="submit"], input[type="button"] {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 0.8rem 1.8rem;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all var(--transition-medium);
  text-decoration: none;
  font-size: 1rem;
  border: 2px solid transparent;
  text-align: center;
  box-shadow: var(--box-shadow-light);
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--text-color-on-secondary);
  border-color: var(--secondary-color);
}
.btn-primary:hover {
  background-color: var(--secondary-color-darker);
  border-color: var(--secondary-color-darker);
  color: var(--text-color-on-secondary);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-medium);
  text-decoration: none;
}

.btn-secondary {
  background-color: var(--text-color-light);
  color: var(--primary-color);
  border-color: var(--text-color-light);
}
.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-medium);
  text-decoration: none;
}

/* Header */
.header {
  background-color: var(--primary-color);
  color: var(--text-color-light);
  padding: 0 var(--spacing-md);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  box-shadow: var(--box-shadow-medium);
  transition: background-color var(--transition-medium);
}
.header.scrolled {
  background-color: rgba(0, 80, 158, 0.95); /* Slightly transparent when scrolled */
  backdrop-filter: blur(5px);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-color-light);
  text-decoration: none;
}
.logo:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: var(--spacing-lg);
}

.nav-link {
  color: var(--text-color-light);
  text-decoration: none;
  font-weight: 700;
  padding: var(--spacing-sm) 0;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width var(--transition-medium);
}
.nav-link:hover, .nav-link.active {
  color: var(--secondary-color);
  text-decoration: none;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-color-light);
  position: relative;
  transition: transform var(--transition-medium);
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: var(--text-color-light);
  left: 0;
  transition: transform var(--transition-medium), top var(--transition-medium), bottom var(--transition-medium);
}
.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

/* Mobile Menu Styles */
@media (max-width: 992px) {
  .header { height: var(--header-height-mobile); }
  .nav-list {
    position: fixed;
    top: var(--header-height-mobile);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height-mobile));
    background-color: var(--primary-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    transform: translateX(100%);
    transition: transform var(--transition-medium);
    padding: var(--spacing-lg);
  }
  .nav-list.active {
    transform: translateX(0);
  }
  .nav-item { width: 100%; text-align: center; }
  .nav-link { font-size: 1.5rem; }
  .nav-toggle { display: block; }

  .nav-toggle.active .hamburger {
    transform: rotate(45deg);
  }
  .nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(90deg);
  }
  .nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(90deg);
    opacity: 0; /* Or rotate to form X */
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  padding-top: calc(var(--header-height) + var(--spacing-xxl));
  padding-bottom: var(--spacing-xxl);
  min-height: 85vh; /* Natural height based on content or specific design needs */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-color-light);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero-title {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--text-color-light); /* Enforced white as per requirement */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}
.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: var(--spacing-lg);
  color: var(--text-color-light); /* Enforced white */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
#particle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-section {
    padding-top: calc(var(--header-height-mobile) + var(--spacing-xl));
    padding-bottom: var(--spacing-xl);
  }
}

/* Mission Section */
.mission-section .mission-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-xl);
}
.mission-text {
  flex: 1 1 55%; /* Asymmetric balance */
  min-width: 300px;
}
.mission-image-container {
  flex: 1 1 40%;
  min-width: 300px;
  text-align: center; /* Center image if it's smaller than container */
}
.mission-image-container img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-strong);
}

/* Statistics Section */
.statistics-section {
  background-color: var(--primary-color); /* Contrasting background */
}
.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-lg);
  text-align: center;
}
.stat-item {
  padding: var(--spacing-lg);
  border-radius: var(--border-radius-md);
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}
.stat-item:hover {
  transform: translateY(-5px);
}
.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: var(--spacing-sm);
  text-shadow: none;
}
.stat-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  text-shadow: none;
}

/* Card Styles (Global) */
.card {
  background-color: var(--background-card);
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-medium);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  display: flex;
  flex-direction: column;
  height: 100%; /* For equal height cards in a grid/flex container */
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-strong);
}
.card-image { /* Container for the image */
  width: 100%;
  height: 220px; /* Fixed height for consistent card appearance */
  overflow: hidden;
  position: relative; /* For potential overlays */
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers the area, might crop */
  display: block;
  transition: transform var(--transition-medium);
}
.card:hover .card-image img {
  transform: scale(1.05);
}
.card-content {
  padding: var(--spacing-lg);
  flex-grow: 1; /* Allows content to fill space, useful for equal height cards */
  display: flex;
  flex-direction: column;
}
.card-title {
  margin-bottom: var(--spacing-sm);
  color: var(--primary-color);
  font-size: 1.4rem;
}
.card-content p {
  font-size: 0.95rem;
  flex-grow: 1; /* Pushes action buttons to bottom if any */
  color: var(--text-color-medium);
}
.card-content .btn {
    margin-top: auto; /* Pushes button to the bottom of the card */
    align-self: flex-start; /* Aligns button to the left */
}


/* Services Section - Carousel */
.services-carousel {
  /* Basic styling if no JS library is used for layout */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  /* If using a JS carousel, these might be overridden */
}
.service-card .card-title {
    text-align: center;
}
.service-card .card-content p {
    text-align: justify; /* Or left */
}

/* Methodology Section - Timeline */
.methodology-section {
  background-color: var(--background-light);
}
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline::after { /* The central line */
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--accent-color-1);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}
.timeline-item {
  padding: var(--spacing-md) var(--spacing-lg);
  position: relative;
  background-color: inherit;
  width: 50%;
}
/* Place items on left and right */
.timeline-item:nth-child(odd) { left: 0; }
.timeline-item:nth-child(even) { left: 50%; }

/* The circle on the timeline */
.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px; /* Adjust if icon is larger */
  background-color: var(--text-color-light);
  border: 4px solid var(--accent-color-1);
  top: 25px;
  border-radius: 50%;
  z-index: 1;
}
.timeline-item:nth-child(even)::after { left: -10px; } /* Adjust for even items */

/* The timeline content */
.timeline-content {
  padding: var(--spacing-lg);
  background-color: var(--background-card);
  position: relative;
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-light);
}
.timeline-item:nth-child(odd) .timeline-content {
  margin-right: var(--spacing-md);
}
.timeline-item:nth-child(even) .timeline-content {
  margin-left: var(--spacing-md);
}
.timeline-icon { /* The number inside the circle - style it if using icons */
  display: none; /* If using ::after for circle, hide this or style differently */
}
.timeline-content h4 {
  color: var(--primary-color);
  margin-top: 0;
}

@media (max-width: 768px) {
  .timeline::after { left: 20px; } /* Move line to the left */
  .timeline-item {
    width: 100%;
    padding-left: calc(20px + var(--spacing-lg)); /* Space for line and icon */
    padding-right: 0;
    left: 0 !important; /* Override inline style from JS if any */
  }
  .timeline-item:nth-child(even) { left: 0 !important; }
  .timeline-item::after { left: 10px; } /* Position icon on the line */
   .timeline-item:nth-child(odd) .timeline-content,
   .timeline-item:nth-child(even) .timeline-content {
    margin-left: var(--spacing-sm);
    margin-right: 0;
  }
}

/* Projects Section */
.projects-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}
.project-card .card-title {
    text-align: left;
}
.project-card .card-content {
    text-align: left;
}


/* Sustainability Section */
.sustainability-section {
  background-color: var(--background-medium);
}
.sustainability-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-xl);
}
.sustainability-text {
  flex: 1 1 55%; /* Asymmetric balance */
  min-width: 300px;
}
.sustainability-image-container {
  flex: 1 1 40%;
  min-width: 300px;
  text-align: center;
}
.sustainability-image-container img {
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-strong);
}

/* External Resources Section */
.external-resources-section {
    background-color: var(--background-light);
}
.resources-list {
    display: grid;
    gap: var(--spacing-lg);
}
.resource-item {
    background-color: var(--background-card);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-light);
    transition: var(--transition-medium);
}
.resource-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-medium);
}
.resource-title {
    margin-bottom: var(--spacing-sm);
}
.resource-title a {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}
.resource-title a:hover {
    color: var(--secondary-color);
}
.resource-description {
    font-size: 0.95rem;
    color: var(--text-color-medium);
    margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
  background-color: var(--background-light);
}
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background-color: var(--background-card);
  margin-bottom: var(--spacing-sm);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--box-shadow-light);
  overflow: hidden;
}
.faq-question {
  background: none;
  border: none;
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after { /* Arrow icon */
  content: '+';
  font-size: 1.5rem;
  transition: transform var(--transition-fast);
  color: var(--accent-color-1);
}
.faq-question.active::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium), padding var(--transition-medium);
}
.faq-answer p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--text-color-medium);
}
.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  /* padding-bottom: var(--spacing-lg); */ /* Handled by JS in this setup */
}


/* Contact CTA Section */
.contact-cta-section {
  background-color: var(--primary-color); /* Matches statistics section */
}


/* Contact Page Form (`contacts.html`) */
.contact-section {
    padding-top: calc(var(--header-height) + var(--spacing-xl)); /* Space for fixed header */
    padding-bottom: var(--spacing-xl);
}
.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--background-card);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-strong);
}
.form-group {
    margin-bottom: var(--spacing-lg);
}
.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color-dark);
}
.form-control {
    width: 100%;
    padding: 0.9rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 80, 158, 0.25);
}
textarea.form-control {
    min-height: 150px;
    resize: vertical;
}
.contact-form-container .btn-primary {
    width: 100%;
    font-size: 1.1rem;
}


/* Footer */
.footer {
  background-color: var(--text-color-dark); /* Dark footer */
  color: rgba(255,255,255,0.7);
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-md);
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}
.footer-column h4.footer-heading {
  font-family: var(--font-heading);
  color: var(--text-color-light);
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
}
.footer-column p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}
.footer-nav-list, .footer-social-list {
  list-style: none;
  padding: 0;
}
.footer-nav-list li, .footer-social-list li {
  margin-bottom: var(--spacing-sm);
}
.footer-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}
.footer-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}
.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

/* Success Page Styles */
.success-page-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - var(--header-height)); /* Full viewport height minus header */
  text-align: center;
  padding: var(--spacing-lg);
  background-color: var(--background-light);
  margin-top: var(--header-height); /* Offset for fixed header */
}
.success-page-container h1 {
  color: var(--accent-color-2); /* Green for success */
  margin-bottom: var(--spacing-md);
  font-size: 2.5rem;
}
.success-page-container p {
  color: var(--text-color-dark);
  max-width: 600px;
  margin-bottom: var(--spacing-lg);
  font-size: 1.1rem;
}
.success-page-container .btn {
  margin-top: var(--spacing-md);
}


/* Privacy & Terms Pages Content Area */
.static-page-content {
  padding-top: calc(var(--header-height) + var(--spacing-xl)); /* Space for fixed header */
  padding-bottom: var(--spacing-xl);
  background-color: var(--background-card);
  min-height: calc(100vh - var(--header-height) - 149px); /* 149px is approx footer height */
}
.static-page-content .container {
    max-width: 900px;
}
.static-page-content h1 {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}
.static-page-content h2 {
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}
.static-page-content p, .static-page-content ul li {
    color: var(--text-color-medium);
    line-height: 1.8;
}
.static-page-content ul {
    list-style-position: outside;
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}


/* Cookie Popup - Basic styling as per prompt */
#cookie-popup {
    /* Styles are inline in HTML for this specific requirement */
}

/* AOS Animation Placeholders - AOS library will handle actual animations */
[data-aos] {
  /* Default state (often opacity 0, or translated) */
  /* AOS will override these when elements come into view */
}

/* Read More Link Styling */
.read-more-link {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent-color-1);
    text-decoration: none;
    display: inline-block;
    margin-top: var(--spacing-sm);
    transition: color var(--transition-fast);
}
.read-more-link::after {
    content: " \2192"; /* Right arrow */
}
.read-more-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Column distribution (example for 2/3 and 1/3) */
.columns-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}
.column {
    flex-grow: 1;
    flex-basis: 0; /* Distribute space evenly initially */
}
.column.is-two-thirds {
    flex-basis: 66.666%;
    min-width: calc(66.666% - var(--spacing-lg)); /* Account for gap */
}
.column.is-one-third {
    flex-basis: 33.333%;
    min-width: calc(33.333% - var(--spacing-lg)); /* Account for gap */
}

@media (max-width: 768px) {
    .column.is-two-thirds,
    .column.is-one-third {
        flex-basis: 100%;
        min-width: 100%;
    }
    .mission-content, .sustainability-container {
      flex-direction: column;
    }
    .mission-text, .sustainability-text {
      order: 2; /* Text below image on mobile for common pattern */
    }
    .mission-image-container, .sustainability-image-container {
      order: 1;
    }
}