/* ============================================
   GrünWerk Köln - Scandinavian Clean Design
   Design Style: Light, Natural, Functional
   ============================================ */

/* 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', Arial, sans-serif;
  line-height: 1.7;
  color: #2c3e35;
  background-color: #fafafa;
  overflow-x: hidden;
}

/* Typography - Scandinavian Clean Style */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Text', Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
  color: #2D5C3F;
  margin-bottom: 16px;
}

h1 {
  font-size: 42px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #4a5a52;
}

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

a:hover {
  color: #7A9B6C;
}

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

li {
  margin-bottom: 8px;
  color: #4a5a52;
}

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

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

/* Section Spacing - Consistent Scandinavian Rhythm */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Header Styles */
header {
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

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

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

.main-nav a {
  font-size: 15px;
  font-weight: 400;
  color: #2c3e35;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
}

.main-nav a:hover {
  color: #2D5C3F;
}

.cta-button {
  display: none;
  background-color: #2D5C3F;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  letter-spacing: 0.3px;
}

.cta-button:hover {
  background-color: #234a32;
  color: #ffffff;
}

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

.mobile-menu-toggle:hover {
  background-color: #234a32;
}

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

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

.mobile-menu-close {
  align-self: flex-end;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #2c3e35;
  cursor: pointer;
  padding: 8px;
  margin-bottom: 24px;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #2D5C3F;
}

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

.mobile-nav a {
  font-size: 18px;
  color: #2c3e35;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #2D5C3F;
}

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

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #2D5C3F;
}

.hero-subtitle {
  font-size: 18px;
  color: #4a5a52;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Page Hero - Clean & Simple */
.page-hero {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #4a5a52;
  max-width: 600px;
  margin: 0 auto 16px;
}

/* Buttons - Scandinavian Style */
.btn-primary, .btn-secondary, .btn-link {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: #2D5C3F;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #234a32;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 92, 63, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #2D5C3F;
  border: 2px solid #2D5C3F;
}

.btn-secondary:hover {
  background-color: #2D5C3F;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-link {
  background-color: transparent;
  color: #2D5C3F;
  padding: 8px 0;
  font-weight: 500;
  border-bottom: 1px solid #2D5C3F;
  border-radius: 0;
}

.btn-link:hover {
  color: #7A9B6C;
  border-bottom-color: #7A9B6C;
}

.btn-primary.center {
  display: block;
  max-width: 300px;
  margin: 32px auto 0;
}

/* Trust Indicators - Clean Layout */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.trust-item strong {
  font-size: 32px;
  color: #2D5C3F;
  font-family: 'Crimson Text', serif;
}

.trust-item span {
  font-size: 14px;
  color: #4a5a52;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Subtitle */
.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4a5a52;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Services Grid - Flexbox Layout */
.services-grid, .topics-grid, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.service-card, .topic-card, .testimonial-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  max-width: 380px;
  margin-bottom: 20px;
}

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

.service-card h3, .topic-card h3 {
  color: #2D5C3F;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p, .topic-card p {
  flex-grow: 1;
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 24px;
  font-weight: 600;
  color: #2D5C3F;
  margin: 16px 0;
  font-family: 'Crimson Text', serif;
}

.topic-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

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

.testimonial-card {
  background-color: #ffffff;
  max-width: 550px;
  padding: 32px;
  border-left: 4px solid #7A9B6C;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #2c3e35;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: #2D5C3F;
  font-size: 16px;
}

.testimonial-author span {
  color: #7A9B6C;
  font-size: 14px;
}

/* CTA Banner - Natural Accent */
.cta-banner {
  background-color: #E8D5B7;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-banner h2 {
  color: #2D5C3F;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  color: #4a5a52;
  margin-bottom: 32px;
}

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

/* Articles & Content Cards */
.articles-grid, .categories-grid, .guides-grid, .benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.article-card, .category-card, .guide-card, .benefit-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.article-card:hover, .category-card:hover, .guide-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.article-card h3, .category-card h3, .guide-card h4 {
  color: #2D5C3F;
  margin-bottom: 12px;
}

.read-time, .count, .spots {
  font-size: 14px;
  color: #7A9B6C;
  display: inline-block;
  margin-top: 8px;
}

.category-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

/* Expert Tips Section */
.expert-tips {
  margin-top: 60px;
}

.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.tip-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.tip-card img {
  width: 48px;
  height: 48px;
}

.tip-card h4 {
  color: #2D5C3F;
  font-size: 18px;
  margin-bottom: 8px;
}

.tip-card p {
  font-size: 15px;
  color: #4a5a52;
}

/* Services Detail Page */
.service-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-item h2 {
  margin-bottom: 16px;
}

.service-item .price {
  font-size: 28px;
  font-weight: 600;
  color: #2D5C3F;
  margin: 24px 0;
  font-family: 'Crimson Text', serif;
}

.service-item .benefits {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.service-item .benefits li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #4a5a52;
}

.service-item .benefits li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7A9B6C;
  font-weight: bold;
}

/* Workshops Page */
.workshop-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.workshop-card h3 {
  color: #2D5C3F;
  margin-bottom: 12px;
}

.workshop-meta {
  font-size: 14px;
  color: #7A9B6C;
  margin-bottom: 16px;
}

.workshop-card .price {
  font-size: 24px;
  font-weight: 600;
  color: #2D5C3F;
  margin: 16px 0;
  font-family: 'Crimson Text', serif;
}

.workshop-card .spots {
  display: inline-block;
  background-color: #E8D5B7;
  color: #2D5C3F;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 13px;
  margin: 12px 0;
}

/* About Page */
.values-grid, .stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.value-card, .stat-item, .benefit-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 24px;
  flex: 1 1 220px;
  max-width: 280px;
  text-align: center;
  margin-bottom: 20px;
}

.value-card h3 {
  color: #2D5C3F;
  font-size: 20px;
  margin-bottom: 12px;
}

.stat-item {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-item strong {
  display: block;
  font-size: 42px;
  color: #2D5C3F;
  font-family: 'Crimson Text', serif;
  margin-bottom: 8px;
}

.stat-item span {
  font-size: 14px;
  color: #4a5a52;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.contact-method {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.contact-method img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.contact-method h3 {
  color: #2D5C3F;
  margin-bottom: 12px;
}

.contact-method a {
  color: #2D5C3F;
  font-weight: 500;
}

.contact-method a:hover {
  color: #7A9B6C;
}

.form-placeholder {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 40px;
  margin-top: 32px;
}

.form-placeholder p {
  margin-bottom: 16px;
  color: #4a5a52;
}

.form-placeholder strong {
  color: #2D5C3F;
}

.office-hours {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px;
  margin-top: 40px;
  text-align: center;
}

.hours-list {
  max-width: 400px;
  margin: 24px auto;
}

.hours-list p {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.emergency-phone {
  font-size: 20px;
  margin-top: 16px;
}

.emergency-phone a {
  color: #2D5C3F;
  font-weight: 600;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
  color: #2D5C3F;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: #2D5C3F;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  margin-bottom: 16px;
}

.legal-content li {
  margin-bottom: 8px;
}

.last-updated, .effective-date {
  font-size: 14px;
  color: #7A9B6C;
  margin-top: 8px;
}

/* Thank You Page */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #7A9B6C;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
}

.thank-you-hero h1 {
  margin-bottom: 16px;
}

.thank-you-hero .subtitle {
  font-size: 20px;
  color: #4a5a52;
  margin-bottom: 16px;
}

.next-steps, .while-you-wait {
  margin-top: 60px;
}

.steps-grid, .links-grid, .suggestion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
}

.step-item, .link-card, .suggestion-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 32px;
  flex: 1 1 280px;
  max-width: 350px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

.step-item:hover, .link-card:hover, .suggestion-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.step-number {
  width: 48px;
  height: 48px;
  background-color: #2D5C3F;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.contact-alternative {
  background-color: #E8D5B7;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
}

.contact-info {
  margin-top: 16px;
}

/* Footer - Clean Scandinavian */
footer {
  background-color: #2D5C3F;
  color: #ffffff;
  padding: 60px 0 24px;
  margin-top: 80px;
}

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

.footer-about, .footer-links, .footer-contact {
  flex: 1 1 250px;
}

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

.footer-about p {
  color: #e0e0e0;
  font-size: 14px;
}

footer h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #e0e0e0;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
  color: #4a5a52;
}

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

.cookie-accept, .cookie-reject, .cookie-settings {
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background-color: #2D5C3F;
  color: #ffffff;
}

.cookie-accept:hover {
  background-color: #234a32;
}

.cookie-reject {
  background-color: #f0f0f0;
  color: #2c3e35;
}

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

.cookie-settings {
  background-color: transparent;
  color: #2D5C3F;
  border: 1px solid #2D5C3F;
}

.cookie-settings:hover {
  background-color: #2D5C3F;
  color: #ffffff;
}

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

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

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

.cookie-modal-content h2 {
  margin-bottom: 24px;
}

.cookie-category {
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cookie-category h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 18px;
}

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

.cookie-toggle.active {
  background-color: #7A9B6C;
}

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

.cookie-toggle.active:after {
  left: 26px;
}

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

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

/* Responsive Design - Mobile First */
@media (min-width: 768px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
  }

  .cta-button {
    display: inline-block;
  }

  .hero h1 {
    font-size: 56px;
  }

  .service-card, .topic-card {
    flex: 1 1 calc(33.333% - 24px);
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }

  .article-card, .category-card {
    flex: 1 1 calc(50% - 24px);
  }

  .footer-bottom {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  section {
    padding: 60px 20px;
  }

  .hero {
    padding: 100px 20px;
  }

  .page-hero {
    padding: 80px 20px;
  }

  .service-card, .topic-card {
    flex: 1 1 calc(33.333% - 24px);
  }

  .article-card, .category-card {
    flex: 1 1 calc(33.333% - 24px);
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-banner,
  header,
  footer {
    display: none;
  }

  body {
    background-color: #ffffff;
  }

  .container {
    max-width: 100%;
  }
}

/* Accessibility */
:focus-visible {
  outline: 2px solid #2D5C3F;
  outline-offset: 2px;
}

/* Smooth Transitions */
* {
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

button, a, input, select, textarea {
  transition: all 0.3s ease;
}

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* End of Styles */