/* ============================================
   BOLD LANDSCAPE - MODERN BOLD STYLE CSS
   ============================================ */

/* ===== CSS RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY - BOLD MODERN STYLE ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: -1px;
}

h2 {
  font-size: 36px;
  text-transform: uppercase;
}

h3 {
  font-size: 24px;
  font-weight: 700;
}

h4 {
  font-size: 20px;
  font-weight: 700;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.8;
}

strong {
  font-weight: 700;
  color: #2C5F2D;
}

a {
  color: #2C5F2D;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

a:hover {
  color: #F4A935;
  transform: translateX(2px);
}

ul, ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

li {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* ===== CONTAINER & LAYOUT ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ===== HEADER - BOLD & GEOMETRIC ===== */
header {
  background: linear-gradient(135deg, #2C5F2D 0%, #1a4a1e 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(44, 95, 45, 0.3);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 8px 0;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #F4A935;
  border-bottom-color: #F4A935;
  transform: translateY(-2px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #F4A935;
  color: #1a1a1a;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(244, 169, 53, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #e09520;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #2C5F2D 0%, #1a4a1e 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F4A935;
  color: #1a1a1a;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #e09520;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #F4A935;
  border-left-color: #F4A935;
  background: rgba(244, 169, 53, 0.1);
  transform: translateX(5px);
}

/* ===== BUTTONS - BOLD & HIGH CONTRAST ===== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  border: 3px solid transparent;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: #F4A935;
  color: #1a1a1a;
  border-color: #F4A935;
  box-shadow: 0 4px 15px rgba(244, 169, 53, 0.3);
}

.btn-primary:hover {
  background: #1a1a1a;
  color: #F4A935;
  border-color: #F4A935;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(244, 169, 53, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #2C5F2D;
  border-color: #2C5F2D;
  border-width: 3px;
}

.btn-secondary:hover {
  background: #2C5F2D;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(44, 95, 45, 0.3);
}

/* ===== HERO SECTION - BOLD IMPACT ===== */
.hero {
  background: linear-gradient(135deg, #2C5F2D 0%, #1a4a1e 100%);
  color: #ffffff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(244, 169, 53, 0.05) 10px,
    rgba(244, 169, 53, 0.05) 20px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0 rgba(244, 169, 53, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #E8F5E9;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.trust-badges {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.badge {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.badge-number {
  font-size: 36px;
  font-weight: 800;
  color: #F4A935;
  font-family: 'Montserrat', sans-serif;
}

.badge-text {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #E8F5E9;
  font-weight: 600;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, #2C5F2D 0%, #1a4a1e 100%);
  color: #ffffff;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 18px;
  color: #E8F5E9;
  font-weight: 400;
}

.breadcrumbs {
  margin-bottom: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.breadcrumbs a {
  color: #F4A935;
}

.breadcrumbs span {
  color: #E8F5E9;
}

/* ===== SECTIONS - GEOMETRIC LAYOUT ===== */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.section-intro {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  color: #555555;
}

/* ===== STATS & VALUE PROPOSITION ===== */
.value-proposition {
  background: #E8F5E9;
  position: relative;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.stat-card {
  background: #ffffff;
  padding: 32px;
  text-align: center;
  flex: 1 1 250px;
  max-width: 280px;
  border: 4px solid #2C5F2D;
  box-shadow: 8px 8px 0 rgba(44, 95, 45, 0.2);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(244, 169, 53, 0.3);
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: #2C5F2D;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555555;
  font-weight: 700;
}

/* ===== SERVICES GRID ===== */
.services-overview {
  background: #ffffff;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  background: #ffffff;
  padding: 32px;
  flex: 1 1 280px;
  border: 4px solid #1a1a1a;
  transition: all 0.3s ease;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #F4A935;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 8px 8px 0 rgba(244, 169, 53, 0.3);
}

.service-card h3 {
  color: #2C5F2D;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 20px;
}

.service-card p {
  color: #555555;
  margin-bottom: 20px;
}

.service-card .price {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #F4A935;
  font-family: 'Montserrat', sans-serif;
}

.services-overview .btn-primary {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/* ===== BENEFITS GRID ===== */
.benefits {
  background: #ffffff;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.benefit-card {
  background: #E8F5E9;
  padding: 32px;
  flex: 1 1 250px;
  border-left: 6px solid #2C5F2D;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateX(8px);
  background: #2C5F2D;
  color: #ffffff;
}

.benefit-card:hover h3,
.benefit-card:hover p {
  color: #ffffff;
}

.benefit-card h3 {
  color: #2C5F2D;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 18px;
}

.benefit-card p {
  color: #555555;
  margin: 0;
}

/* ===== TESTIMONIALS - HIGH CONTRAST ===== */
.testimonials {
  background: #1a1a1a;
  color: #ffffff;
  position: relative;
}

.testimonials h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.testimonial-card {
  background: #ffffff;
  color: #1a1a1a;
  padding: 32px;
  flex: 1 1 400px;
  border: 4px solid #F4A935;
  box-shadow: 8px 8px 0 rgba(244, 169, 53, 0.3);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 120px;
  color: #F4A935;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #1a1a1a;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 700;
  color: #2C5F2D;
  margin-bottom: 4px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.testimonial-location {
  font-size: 14px;
  color: #555555;
  margin: 0;
}

/* ===== CTA BANNER - BOLD CALL TO ACTION ===== */
.cta-banner {
  background: linear-gradient(135deg, #F4A935 0%, #e09520 100%);
  color: #1a1a1a;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(0, 0, 0, 0.05) 20px,
    rgba(0, 0, 0, 0.05) 40px
  );
}

.cta-banner h2 {
  color: #1a1a1a;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.cta-banner .btn-primary {
  position: relative;
  z-index: 1;
  background: #1a1a1a;
  color: #F4A935;
  border-color: #1a1a1a;
}

.cta-banner .btn-primary:hover {
  background: #ffffff;
  color: #1a1a1a;
  border-color: #1a1a1a;
}

/* ===== CONTENT GRIDS ===== */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

/* ===== SERVICE DETAIL ===== */
.service-detail {
  background: #ffffff;
  padding: 48px 20px;
  margin-bottom: 32px;
  border-left: 8px solid #2C5F2D;
}

.service-detail h2 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

.service-detail .price {
  display: inline-block;
  font-size: 32px;
  font-weight: 800;
  color: #F4A935;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}

.service-detail h3 {
  color: #2C5F2D;
  margin-top: 32px;
  margin-bottom: 16px;
  text-transform: uppercase;
  font-size: 20px;
}

/* ===== PROJECTS & ARTICLES ===== */
.project-card,
.article-card,
.article-featured {
  background: #ffffff;
  padding: 32px;
  margin-bottom: 32px;
  border: 4px solid #1a1a1a;
  transition: all 0.3s ease;
}

.project-card:hover,
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 rgba(244, 169, 53, 0.3);
}

.project-card h3,
.article-card h3 {
  color: #2C5F2D;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.project-category,
.article-meta .category {
  display: inline-block;
  background: #F4A935;
  color: #1a1a1a;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.project-power,
.project-result {
  font-weight: 700;
  color: #2C5F2D;
  margin-bottom: 8px;
}

.article-meta {
  font-size: 14px;
  color: #555555;
  margin-top: 16px;
}

.article-excerpt {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.article-card {
  flex: 1 1 300px;
}

/* ===== FUNDING PROGRAMS ===== */
.funding-program {
  background: #E8F5E9;
  padding: 48px 20px;
  margin-bottom: 32px;
  border: 4px solid #2C5F2D;
}

.funding-program h2 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

.program-amount {
  display: inline-block;
  font-size: 36px;
  font-weight: 800;
  color: #F4A935;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.funding-program h3 {
  color: #2C5F2D;
  margin-top: 32px;
  text-transform: uppercase;
}

.timeline {
  background: #ffffff;
  padding: 16px;
  border-left: 4px solid #F4A935;
  margin-top: 20px;
  font-weight: 700;
}

/* ===== MILESTONES ===== */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.milestone {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 200px;
}

.milestone .year {
  font-size: 32px;
  font-weight: 800;
  color: #F4A935;
  font-family: 'Montserrat', sans-serif;
}

.milestone .event {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #2C5F2D;
}

/* ===== CONTACT SECTIONS ===== */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  background: #E8F5E9;
  padding: 32px;
  flex: 1 1 300px;
  border-left: 6px solid #2C5F2D;
}

.contact-card h3 {
  color: #2C5F2D;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.contact-detail {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.contact-hours {
  font-size: 14px;
  color: #555555;
  margin: 0;
}

.form-info {
  background: #E8F5E9;
  padding: 32px;
  border: 4px solid #2C5F2D;
  margin-top: 32px;
}

.form-info p {
  margin-bottom: 16px;
}

.consent-text {
  font-size: 14px;
  color: #555555;
}

.note {
  font-size: 14px;
  color: #555555;
  font-style: italic;
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  background: #ffffff;
  padding: 48px 20px;
}

.legal-content h2 {
  color: #2C5F2D;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  color: #2C5F2D;
  margin-top: 32px;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  background: #E8F5E9;
  padding: 16px;
  margin-bottom: 16px;
  border-left: 6px solid #2C5F2D;
}

.update-date {
  margin-top: 40px;
  font-style: italic;
  color: #555555;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-hero {
  background: linear-gradient(135deg, #2C5F2D 0%, #1a4a1e 100%);
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
}

.thank-you-hero h1 {
  color: #ffffff;
  margin-bottom: 24px;
}

.thank-you-hero .subtitle {
  font-size: 20px;
  color: #E8F5E9;
  margin-bottom: 32px;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.action-card {
  background: #ffffff;
  padding: 32px;
  flex: 1 1 280px;
  max-width: 350px;
  border: 4px solid #2C5F2D;
  text-align: center;
}

.action-card h3 {
  color: #2C5F2D;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: #F4A935;
  text-align: center;
  padding: 60px 20px;
}

.newsletter h2 {
  color: #1a1a1a;
  margin-bottom: 16px;
}

.newsletter p {
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 24px;
}

.newsletter-form p {
  font-size: 18px;
  font-weight: 700;
}

/* ===== FOOTER - BOLD & GEOMETRIC ===== */
footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  color: #F4A935;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
}

.footer-col p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #cccccc;
  font-size: 14px;
  transition: all 0.3s ease;
  font-weight: 400;
}

.footer-nav a:hover {
  color: #F4A935;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 2px solid #333333;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #888888;
  font-size: 14px;
  margin: 0;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #F4A935;
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  color: #cccccc;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
}

.cookie-accept {
  background: #F4A935;
  color: #1a1a1a;
  border-color: #F4A935;
}

.cookie-accept:hover {
  background: #e09520;
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: #cccccc;
  border-color: #cccccc;
}

.cookie-reject:hover {
  background: #cccccc;
  color: #1a1a1a;
}

.cookie-settings {
  background: transparent;
  color: #F4A935;
  border-color: #F4A935;
}

.cookie-settings:hover {
  background: #F4A935;
  color: #1a1a1a;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 4px solid #2C5F2D;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.cookie-modal h2 {
  color: #2C5F2D;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 16px;
  background: #E8F5E9;
  border-left: 4px solid #2C5F2D;
}

.cookie-category h3 {
  color: #2C5F2D;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  cursor: pointer;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Hide desktop nav, show mobile toggle */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  
  /* Header */
  header { padding: 16px 0; }
  .logo img { height: 40px; }
  
  /* Hero */
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 16px; }
  .hero-cta { flex-direction: column; }
  .trust-badges { flex-direction: column; gap: 24px; }
  
  /* Buttons */
  .btn { padding: 14px 28px; font-size: 14px; }
  
  /* Grids */
  .stats-grid,
  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .content-grid,
  .articles-grid,
  .contact-grid,
  .actions-grid,
  .milestones {
    flex-direction: column;
  }
  
  .stat-card,
  .service-card,
  .benefit-card,
  .testimonial-card,
  .project-card,
  .article-card,
  .contact-card,
  .action-card {
    max-width: 100%;
  }
  
  /* Sections */
  section { padding: 40px 20px; margin-bottom: 40px; }
  .page-hero { padding: 40px 20px; margin-bottom: 40px; }
  
  /* Footer */
  .footer-content { flex-direction: column; gap: 32px; }
  footer { padding: 40px 20px 20px; }
  
  /* Cookie banner */
  .cookie-content { flex-direction: column; align-items: flex-start; }
  .cookie-buttons { width: 100%; }
  .cookie-btn { flex: 1; min-width: 0; }
  
  /* Mobile menu width */
  .mobile-menu { width: 85%; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 28px; }
  .badge-number { font-size: 28px; }
  .stat-number { font-size: 36px; }
  
  .cookie-modal-content { padding: 24px; }
  .mobile-menu { width: 100%; }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content,
.stat-card,
.service-card,
.benefit-card {
  animation: fadeIn 0.6s ease forwards;
}

.stat-card:nth-child(2) { animation-delay: 0.1s; }
.stat-card:nth-child(3) { animation-delay: 0.2s; }
.stat-card:nth-child(4) { animation-delay: 0.3s; }

/* ===== ACCESSIBILITY ===== */
:focus {
  outline: 3px solid #F4A935;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 3px solid #F4A935;
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer,
  .cta-banner { display: none; }
  
  body { color: #000000; background: #ffffff; }
  a { color: #000000; text-decoration: underline; }
}