/* =================================================================
   EnergoSmart - Scandinavian Clean Design System
   Design Style: Light colors, natural materials, simple fonts, functional beauty
   ================================================================= */

/* CSS Reset & Base Styles */
* {
  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.6;
  color: #2C3E50;
  background-color: #FAFAFA;
  overflow-x: hidden;
}

/* Typography - Scandinavian Clean */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: #1B5E20;
  margin-bottom: 16px;
}

h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
  margin-bottom: 16px;
  color: #546E7A;
}

a {
  color: #2E7D32;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #1B5E20;
}

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

li {
  margin-bottom: 8px;
  color: #546E7A;
}

strong {
  font-weight: 600;
  color: #2C3E50;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Header */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

/* Navigation - Desktop */
.main-nav {
  display: none;
  gap: 24px;
  align-items: center;
}

.main-nav a {
  font-weight: 500;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
  color: #546E7A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a:hover {
  background-color: #F5F5F5;
  color: #2E7D32;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #2E7D32;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background-color: #1B5E20;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  transition: right 0.3s ease;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

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

.mobile-menu-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  background-color: #F5F5F5;
  border: none;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 24px;
  color: #546E7A;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #E0E0E0;
  color: #2C3E50;
}

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

.mobile-nav a {
  padding: 16px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  color: #546E7A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.mobile-nav a:hover {
  background-color: #F5F5F5;
  color: #2E7D32;
}

/* Buttons - Scandinavian Style */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #2E7D32;
  color: #FFFFFF !important;
  border-color: #2E7D32;
}

.btn-primary:hover {
  background-color: #1B5E20;
  border-color: #1B5E20;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #2E7D32;
  border-color: #2E7D32;
}

.btn-secondary:hover {
  background-color: #F5F5F5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #F5F5F5 0%, #E8F5E9 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 24px;
  color: #1B5E20;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 32px;
  color: #546E7A;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.trust-indicators {
  margin-top: 32px;
  padding: 16px;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trust-indicators p {
  font-size: 14px;
  margin: 0;
  color: #546E7A;
}

/* Hero Internal */
.hero-internal {
  background-color: #F5F5F5;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
  color: #78909C;
}

.breadcrumb a {
  color: #2E7D32;
}

.breadcrumb span {
  color: #546E7A;
}

/* Sections */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #1B5E20;
}

/* Benefits Grid */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.benefit-card {
  flex: 1 1 280px;
  max-width: 300px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
  color: #2E7D32;
  margin-bottom: 16px;
  font-size: 20px;
}

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

/* Stats */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  margin-top: 40px;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat {
  text-align: center;
  flex: 1 1 200px;
}

.stat strong {
  display: block;
  font-size: 32px;
  color: #2E7D32;
  margin-bottom: 8px;
  font-weight: 700;
}

.stat span {
  display: block;
  font-size: 14px;
  color: #78909C;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Solution Section */
.solution {
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 60px 20px;
}

.problem {
  font-size: 20px;
  font-weight: 600;
  color: #FF6F00;
  text-align: center;
  margin-bottom: 24px;
}

.solution-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 32px auto;
}

.step {
  padding: 20px;
  background-color: #F5F5F5;
  border-left: 4px solid #2E7D32;
  border-radius: 4px;
}

.step strong {
  color: #1B5E20;
  font-size: 18px;
}

/* Services Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.service-card {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  color: #1B5E20;
  margin-bottom: 16px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card p {
  color: #546E7A;
  margin-bottom: 16px;
}

.highlight {
  text-align: center;
  font-weight: 600;
  color: #FF6F00;
  font-size: 18px;
  margin: 32px 0;
}

/* Testimonials */
.testimonials {
  background-color: #F5F5F5;
  padding: 60px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1 1 400px;
  max-width: 500px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-card p {
  font-style: italic;
  color: #2C3E50;
  margin-bottom: 16px;
  font-size: 16px;
}

.testimonial-card strong {
  display: block;
  color: #1B5E20;
  margin-bottom: 8px;
  font-size: 16px;
}

.testimonial-card span {
  display: block;
  color: #FF6F00;
  font-size: 18px;
}

.trust-badge {
  text-align: center;
  font-weight: 600;
  color: #2E7D32;
  font-size: 18px;
  margin-top: 32px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #E8F5E9 0%, #F5F5F5 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 4px;
}

.cta-section h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #1B5E20;
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #546E7A;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.urgency {
  margin-top: 32px;
  font-weight: 600;
  color: #FF6F00;
  font-size: 16px;
}

/* Service Detail */
.service-detail {
  background-color: #FFFFFF;
  padding: 60px 20px;
  margin-bottom: 40px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #2E7D32;
  margin-bottom: 24px;
}

.price-old {
  text-decoration: line-through;
  color: #90A4AE;
  font-size: 18px;
  margin-bottom: 8px;
}

.price-new {
  font-size: 24px;
  font-weight: 700;
  color: #2E7D32;
  margin-bottom: 16px;
}

/* Packages */
.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
}

.package-card {
  flex: 1 1 300px;
  max-width: 380px;
  background-color: #FFFFFF;
  padding: 40px 32px;
  border-radius: 4px;
  border: 2px solid #E0E0E0;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.package-card:hover {
  border-color: #2E7D32;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(46, 125, 50, 0.2);
}

.package-card h3 {
  color: #1B5E20;
  margin-bottom: 16px;
  font-size: 24px;
}

/* Team Grid */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}

.team-member {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.team-member h3 {
  color: #1B5E20;
  margin-bottom: 8px;
  font-size: 20px;
}

.team-member p {
  margin-bottom: 12px;
}

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

/* Approach Grid */
.approach-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.approach-item {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 24px;
  background-color: #F5F5F5;
  border-radius: 4px;
}

.approach-item h3 {
  color: #2E7D32;
  margin-bottom: 12px;
}

/* Blog */
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.category {
  padding: 10px 20px;
  border: 2px solid #E0E0E0;
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.3s ease;
  color: #546E7A;
}

.category:hover,
.category.active {
  border-color: #2E7D32;
  background-color: #E8F5E9;
  color: #1B5E20;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.post-card {
  flex: 1 1 300px;
  max-width: 380px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.post-card h3 {
  color: #1B5E20;
  margin-bottom: 16px;
  font-size: 20px;
  min-height: 60px;
  display: flex;
  align-items: center;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #78909C;
  margin-top: 16px;
}

.post-meta .category {
  padding: 4px 12px;
  background-color: #E8F5E9;
  color: #2E7D32;
  border-radius: 12px;
  border: none;
}

/* Contact */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.contact-option {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.contact-option h3 {
  color: #1B5E20;
  margin-bottom: 16px;
}

.form-placeholder {
  background-color: #F5F5F5;
  padding: 60px 32px;
  border-radius: 4px;
  text-align: center;
  border: 2px dashed #E0E0E0;
}

.location-info {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Opening Hours Table */
table {
  width: 100%;
  max-width: 500px;
  margin: 32px auto;
  border-collapse: collapse;
  background-color: #FFFFFF;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

table tr {
  border-bottom: 1px solid #E0E0E0;
}

table td {
  padding: 16px;
  color: #546E7A;
}

table td:first-child {
  font-weight: 600;
  color: #2C3E50;
}

/* FAQ */
.faq-item {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 4px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  color: #1B5E20;
  margin-bottom: 12px;
  font-size: 18px;
}

/* Legal Content */
.legal-content {
  background-color: #FFFFFF;
  padding: 60px 20px;
  border-radius: 4px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #1B5E20;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 24px;
}

/* Thank You Page */
.thank-you {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #E8F5E9 0%, #F5F5F5 100%);
}

.thank-you-content {
  background-color: #FFFFFF;
  padding: 60px 40px;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 0 auto;
}

.thank-you-content h1 {
  font-size: 36px;
  margin-bottom: 24px;
  color: #2E7D32;
}

.thank-you-content ol {
  text-align: left;
  max-width: 500px;
  margin: 32px auto;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.suggestion {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.suggestion h3 {
  margin-bottom: 16px;
  color: #1B5E20;
}

/* Footer */
footer {
  background-color: #2C3E50;
  color: #ECEFF1;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-info {
  flex: 1 1 250px;
  max-width: 300px;
}

.footer-info img {
  height: 40px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-info p {
  color: #B0BEC5;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-links {
  flex: 1 1 150px;
}

.footer-links h4 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-links a {
  display: block;
  color: #B0BEC5;
  margin-bottom: 8px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid #37474F;
  padding-top: 24px;
  text-align: center;
}

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

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 3000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

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

.cookie-banner-text {
  flex: 1 1 300px;
}

.cookie-banner-text h3 {
  color: #1B5E20;
  margin-bottom: 8px;
  font-size: 18px;
}

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

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

.cookie-banner button {
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept-all {
  background-color: #2E7D32;
  color: #FFFFFF;
  border-color: #2E7D32;
}

.cookie-accept-all:hover {
  background-color: #1B5E20;
}

.cookie-reject-all {
  background-color: #FFFFFF;
  color: #546E7A;
  border-color: #E0E0E0;
}

.cookie-reject-all:hover {
  background-color: #F5F5F5;
}

.cookie-settings {
  background-color: #FFFFFF;
  color: #2E7D32;
  border-color: #2E7D32;
}

.cookie-settings:hover {
  background-color: #E8F5E9;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background-color: #F5F5F5;
  border: none;
  border-radius: 4px;
  font-size: 20px;
  cursor: pointer;
  color: #546E7A;
}

.cookie-modal-close:hover {
  background-color: #E0E0E0;
}

.cookie-modal h2 {
  color: #1B5E20;
  margin-bottom: 24px;
  text-align: left;
}

.cookie-category {
  background-color: #F5F5F5;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h3 {
  color: #2C3E50;
  font-size: 16px;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background-color: #E0E0E0;
  border-radius: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #2E7D32;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  color: #546E7A;
  font-size: 14px;
  margin: 0;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

/* Responsive Design - Mobile First */
@media (min-width: 768px) {
  /* Typography */
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  h3 { font-size: 28px; }
  
  /* Hide mobile menu toggle on desktop */
  .mobile-menu-toggle {
    display: none;
  }
  
  /* Show desktop navigation */
  .main-nav {
    display: flex;
  }
  
  /* Hero */
  .hero h1 {
    font-size: 56px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  /* Benefits Grid */
  .benefit-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  /* Services */
  .service-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  /* Testimonials */
  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  /* Posts */
  .post-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  /* Team */
  .team-member {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  /* Contact */
  .contact-option {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  /* Packages */
  .package-card {
    flex: 1 1 calc(33.333% - 24px);
  }
}

@media (min-width: 1024px) {
  /* Sections */
  section {
    padding: 60px 20px;
  }
  
  /* Hero */
  .hero {
    padding: 120px 20px;
  }
  
  .hero h1 {
    font-size: 64px;
  }
  
  /* Benefits */
  .benefit-card {
    flex: 1 1 calc(25% - 24px);
  }
}

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

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #2E7D32;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-section {
    display: none;
  }
  
  body {
    background-color: #FFFFFF;
  }
  
  a {
    text-decoration: underline;
  }
}