/* ============================================
   ZIELONY ZAKĄTEK - MONOCHROME SOPHISTICATED
   Complete CSS Stylesheet
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* ============================================
   TYPOGRAPHY - MONOCHROME SOPHISTICATED
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 16px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

strong {
  font-weight: 700;
  color: #000000;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

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

/* ============================================
   HEADER - SOPHISTICATED DESIGN
   ============================================ */

header {
  background-color: #ffffff;
  border-bottom: 2px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.main-nav {
  display: none;
}

.main-nav a {
  margin: 0 16px;
  color: #333333;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #000000;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: none;
}

/* ============================================
   BUTTONS - MONOCHROME DESIGN
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

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

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

.btn-secondary {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #000000;
}

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

/* ============================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ============================================ */

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #000000;
  color: #ffffff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  transition: all 0.3s ease;
  border-radius: 4px;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  border-left: 2px solid #e0e0e0;
  z-index: 1000;
  transition: right 0.4s ease;
  overflow-y: auto;
  padding: 80px 0 40px 0;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background-color: #000000;
  color: #ffffff;
  border: none;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.mobile-nav a {
  padding: 20px 40px;
  color: #333333;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #f5f5f5;
  color: #000000;
  padding-left: 50px;
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  padding: 80px 20px;
  margin-bottom: 80px;
}

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

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

.hero-subtitle {
  font-size: 20px;
  color: #333333;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background-color: #ffffff;
  border: 1px solid #d0d0d0;
  font-size: 14px;
  color: #333333;
}

.badge img {
  width: 24px;
  height: 24px;
}

.hero-simple {
  background-color: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-bottom: 2px solid #e0e0e0;
}

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

.subtitle {
  font-size: 18px;
  color: #555555;
  max-width: 700px;
  margin: 0 auto;
}

/* ============================================
   SECTION STYLES
   ============================================ */

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

/* ============================================
   BENEFITS SECTION
   ============================================ */

.benefits {
  background-color: #ffffff;
  padding: 60px 20px;
}

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

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.benefit-card {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 32px;
  text-align: center;
  background-color: #f9f9f9;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #000000;
}

.benefit-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 15px;
  color: #555555;
}

/* ============================================
   SERVICES PREVIEW
   ============================================ */

.services-preview {
  background-color: #f5f5f5;
  padding: 60px 20px;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 16px;
}

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

.service-card {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 40px;
  background-color: #ffffff;
  border: 2px solid #d0d0d0;
  position: relative;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: #000000;
}

.service-card.featured {
  border: 3px solid #000000;
  background-color: #fafafa;
}

.service-card .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #000000;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
  color: #555555;
  margin-bottom: 24px;
}

.service-card .price {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  font-family: 'Playfair Display', serif;
}

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

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */

.testimonials {
  background-color: #ffffff;
  padding: 60px 20px;
}

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

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 500px;
  padding: 32px;
  background-color: #f9f9f9;
  border-left: 4px solid #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

.author strong {
  font-size: 16px;
  color: #000000;
  font-weight: 700;
}

.author span {
  font-size: 14px;
  color: #555555;
}

.rating {
  text-align: center;
  font-size: 18px;
  color: #333333;
  font-weight: 600;
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-final, .cta {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.cta-final h2, .cta h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-final p, .cta p {
  color: #e0e0e0;
  font-size: 18px;
  margin-bottom: 32px;
}

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

.cta .btn-primary {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.cta .btn-primary:hover {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.guarantee, .showroom-info, .contact-info {
  margin-top: 32px;
  font-size: 14px;
  color: #b0b0b0;
}

/* ============================================
   FOOTER - SOPHISTICATED LAYOUT
   ============================================ */

footer {
  background-color: #1a1a1a;
  color: #e0e0e0;
  padding: 60px 20px 20px;
  border-top: 3px solid #000000;
}

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

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

.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

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

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

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid #333333;
}

.footer-bottom p {
  font-size: 14px;
  color: #808080;
}

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom nav a {
  font-size: 13px;
  color: #808080;
}

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

/* ============================================
   SERVICES LIST PAGE
   ============================================ */

.services-list {
  padding: 40px 20px;
}

.service-detail {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 40px;
  background-color: #f9f9f9;
  border: 2px solid #e0e0e0;
  position: relative;
}

.service-detail .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #000000;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  border: none;
}

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

.service-detail .price {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}

.service-detail h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-detail ul {
  margin-bottom: 32px;
  padding-left: 20px;
}

.service-detail ul li {
  margin-bottom: 12px;
  color: #333333;
  line-height: 1.6;
}

.service-detail .btn {
  margin-top: 24px;
}

/* ============================================
   PLANTS PAGES
   ============================================ */

.plants-category {
  margin-bottom: 80px;
}

.plants-category h2 {
  text-align: center;
  margin-bottom: 16px;
}

.category-intro {
  text-align: center;
  font-size: 16px;
  color: #555555;
  margin-bottom: 40px;
}

.plants-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.plant-card {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #d0d0d0;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.plant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: #000000;
}

.plant-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.plant-card p {
  font-size: 14px;
  color: #555555;
  margin-bottom: 20px;
}

.plant-card .price {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  font-family: 'Playfair Display', serif;
}

/* ============================================
   DELIVERY INFO
   ============================================ */

.delivery-info {
  background-color: #f5f5f5;
  padding: 60px 20px;
}

.delivery-info h2 {
  text-align: center;
  margin-bottom: 40px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.info-card {
  flex: 1 1 400px;
  max-width: 500px;
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #d0d0d0;
}

.info-card h3 {
  margin-bottom: 16px;
}

.info-card p {
  color: #555555;
}

/* ============================================
   WORKSHOPS PAGE
   ============================================ */

.workshop-benefits {
  margin-bottom: 60px;
}

.workshops-list {
  padding: 40px 20px;
}

.workshop-card {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 40px;
  background-color: #f9f9f9;
  border: 2px solid #e0e0e0;
  position: relative;
}

.workshop-card .badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #000000;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  border: none;
}

.workshop-card h3 {
  margin-bottom: 12px;
}

.duration {
  display: block;
  font-size: 14px;
  color: #666666;
  margin-bottom: 16px;
  font-weight: 600;
}

.workshop-card .price {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 20px 0;
  font-family: 'Playfair Display', serif;
}

/* ============================================
   BLOG PAGE
   ============================================ */

.blog-categories {
  margin-bottom: 60px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.category-card {
  padding: 20px 32px;
  background-color: #f5f5f5;
  border: 2px solid #d0d0d0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.category-card:hover {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-4px);
}

.featured-posts {
  margin-bottom: 60px;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.post-card {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #d0d0d0;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: #000000;
}

.post-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.post-card p {
  font-size: 14px;
  color: #555555;
  margin-bottom: 16px;
}

.read-time {
  display: block;
  font-size: 13px;
  color: #808080;
  font-weight: 600;
}

.recent-posts {
  margin-bottom: 60px;
}

.posts-list {
  max-width: 800px;
  margin: 0 auto;
}

.post-item {
  padding: 24px 0;
  border-bottom: 1px solid #e0e0e0;
}

.post-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.meta {
  font-size: 13px;
  color: #808080;
}

.expert-tips {
  background-color: #f5f5f5;
  padding: 60px 20px;
}

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

.tip-card {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 24px;
  background-color: #000000;
  color: #ffffff;
  border-left: 4px solid #ffffff;
}

.tip-card p {
  color: #e0e0e0;
  font-size: 15px;
  margin: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-methods {
  margin-bottom: 60px;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.method-card {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 32px;
  background-color: #f9f9f9;
  border: 2px solid #e0e0e0;
  text-align: center;
}

.method-card img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.method-card h3 {
  margin-bottom: 12px;
}

.method-card p {
  font-size: 15px;
  color: #555555;
}

.method-card .note {
  font-size: 13px;
  color: #808080;
  margin-top: 8px;
}

.contact-form-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section > p {
  text-align: center;
  color: #555555;
  margin-bottom: 40px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border: 2px solid #d0d0d0;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333333;
  font-size: 14px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px;
  border: 2px solid #d0d0d0;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #000000;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input[type="checkbox"] {
  margin-right: 8px;
}

.form-wrapper .btn {
  width: 100%;
  margin-top: 16px;
}

.form-wrapper .note {
  text-align: center;
  font-size: 13px;
  color: #808080;
  margin-top: 16px;
}

.showroom-info {
  padding: 60px 20px;
}

.showroom-info h2 {
  text-align: center;
  margin-bottom: 16px;
}

.showroom-info > p {
  text-align: center;
  color: #555555;
  margin-bottom: 40px;
}

.info-content {
  max-width: 700px;
  margin: 0 auto;
}

.info-text h3 {
  margin-bottom: 16px;
}

.info-text ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.info-text ul li {
  margin-bottom: 12px;
  color: #333333;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
  background-color: #f5f5f5;
  padding: 60px 20px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid #d0d0d0;
}

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

.faq-item p {
  color: #555555;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page {
  padding: 40px 20px;
}

.legal-page h1 {
  text-align: center;
  margin-bottom: 40px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 24px;
}

.text-section p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.text-section ul {
  margin: 16px 0 24px 20px;
  padding-left: 20px;
}

.text-section ul li {
  margin-bottom: 12px;
  color: #333333;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.story {
  padding: 60px 20px;
}

.story h2 {
  text-align: center;
  margin-bottom: 40px;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.milestone {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 24px;
  background-color: #f5f5f5;
  border: 2px solid #d0d0d0;
}

.milestone strong {
  display: block;
  font-size: 32px;
  color: #000000;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.milestone p {
  font-size: 14px;
  color: #555555;
}

.values {
  background-color: #f5f5f5;
  padding: 60px 20px;
}

.values h2 {
  text-align: center;
  margin-bottom: 16px;
}

.mission {
  text-align: center;
  font-size: 18px;
  color: #555555;
  max-width: 700px;
  margin: 0 auto 48px;
  font-style: italic;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-card {
  flex: 1 1 250px;
  max-width: 280px;
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #d0d0d0;
  text-align: center;
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: #555555;
}

.team {
  padding: 60px 20px;
}

.team h2 {
  text-align: center;
  margin-bottom: 16px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.team-member {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 32px;
  background-color: #f9f9f9;
  border: 2px solid #e0e0e0;
  text-align: center;
}

.team-member h3 {
  margin-bottom: 8px;
}

.role {
  display: block;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
  font-size: 15px;
}

.team-member p {
  font-size: 14px;
  color: #555555;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you {
  padding: 80px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

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

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

.message {
  font-size: 18px;
  color: #555555;
  margin-bottom: 40px;
}

.next-steps {
  text-align: left;
  max-width: 500px;
  margin: 32px auto 40px;
  padding-left: 20px;
}

.next-steps li {
  margin-bottom: 12px;
  color: #333333;
}

.while-waiting {
  background-color: #f5f5f5;
  padding: 60px 20px;
}

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

.suggestion-card {
  flex: 1 1 280px;
  max-width: 320px;
  padding: 32px;
  background-color: #ffffff;
  border: 2px solid #d0d0d0;
  text-align: center;
}

.suggestion-card h3 {
  margin-bottom: 12px;
}

.suggestion-card p {
  font-size: 14px;
  color: #555555;
  margin-bottom: 20px;
}

.suggestion-card a {
  color: #000000;
  font-weight: 600;
  text-decoration: underline;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 24px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

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

.cookie-btn {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: #ffffff;
  color: #000000;
}

.cookie-btn-accept:hover {
  background-color: #000000;
  color: #ffffff;
}

.cookie-btn-reject {
  background-color: transparent;
  color: #ffffff;
}

.cookie-btn-reject:hover {
  background-color: #ffffff;
  color: #000000;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #ffffff;
  border-color: #666666;
}

.cookie-btn-settings:hover {
  border-color: #ffffff;
  background-color: #333333;
}

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

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

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

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

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

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

.cookie-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

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

.cookie-category p {
  font-size: 14px;
  color: #555555;
}

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

/* ============================================
   RESPONSIVE DESIGN - TABLET
   ============================================ */

@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .main-nav {
    display: flex;
  }

  .header-cta {
    display: flex;
    gap: 12px;
  }

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

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

  .hero-subtitle {
    font-size: 22px;
  }

  .footer-content {
    justify-content: space-between;
  }
}

/* ============================================
   RESPONSIVE DESIGN - DESKTOP
   ============================================ */

@media (min-width: 1024px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 48px;
  }

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

  section {
    padding: 60px 20px;
  }
}

/* ============================================
   MOBILE RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
  .header-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .hero-cta {
    flex-direction: column;
  }

  .trust-badges {
    flex-direction: column;
  }

  .services-grid,
  .benefits-grid,
  .testimonials-grid,
  .values-grid,
  .team-grid,
  .methods-grid,
  .plants-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-card,
  .benefit-card,
  .testimonial-card,
  .value-card,
  .team-member,
  .method-card,
  .plant-card {
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

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

/* ============================================
   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; }

/* ============================================
   PRINT STYLES
   ============================================ */

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

  body {
    color: #000000;
  }

  a {
    text-decoration: underline;
  }
}