/* Hand-drawn style CSS for LadKiramma.com */

/* Custom fonts and base styles */
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&family=Caveat:wght@400;600;700&display=swap');

:root {
  --primary-color: #2d5016;
  --secondary-color: #8B4513;
  --accent-color: #90EE90;
  --text-color: #333;
  --background-color: #fefefe;
  --border-radius: 8px;
  --hand-drawn-border: 2px;
}

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

body {
  font-family: 'Kalam', cursive;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%);
}

/* Hand-drawn borders effect */
.hand-drawn-border {
  border: var(--hand-drawn-border) solid var(--primary-color);
  border-radius: var(--border-radius);
  position: relative;
}

.hand-drawn-border::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  transform: rotate(0.5deg);
  opacity: 0.7;
}

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

/* Header and Navigation */
.header {
  background: linear-gradient(135deg, #fefefe 0%, #f0f8f0 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo a {
  text-decoration: none;
}

.logo-svg {
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 2px 4px 8px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #e6f3e6 0%, #f0f8ff 100%);
  padding: 4rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text h1 {
  font-family: 'Caveat', cursive;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color) 0%, #3d6b26 100%);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 2px 4px 8px rgba(0,0,0,0.2);
  border: 2px solid transparent;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 4px 8px 16px rgba(0,0,0,0.3);
  border-color: var(--secondary-color);
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #3d6b26 100%);
}

.cta-button.secondary {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #a0522d 100%);
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Caveat', cursive;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-icon {
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

/* About Section */
.about-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fff8 0%, #e6f3e6 100%);
}

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

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Services Section */
.services-section {
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: 4px 6px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 6px 12px 24px rgba(0,0,0,0.2);
  border-color: var(--accent-color);
}

.service-card h3 {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin: 1rem 0;
}

.service-icon {
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

/* Testimonials Section */
.testimonials-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 3px 5px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent-color);
}

.testimonial-card:hover {
  transform: translateY(-3px) rotate(-0.5deg);
  box-shadow: 5px 10px 20px rgba(0,0,0,0.2);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.testimonial-card cite {
  color: var(--primary-color);
  font-weight: 600;
}

/* Newsletter Section */
.newsletter-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fffef0 0%, #f8f5e4 100%);
}

.newsletter-form {
  max-width: 500px;
  margin: 2rem auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--accent-color);
  border-radius: var(--border-radius);
  font-family: 'Kalam', cursive;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(45, 80, 22, 0.3);
  transform: scale(1.02);
}

.submit-button {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #3d6b26 100%);
  color: white;
  padding: 1rem;
  border: none;
  border-radius: var(--border-radius);
  font-family: 'Kalam', cursive;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 2px 4px 8px rgba(0,0,0,0.2);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 4px 8px 16px rgba(0,0,0,0.3);
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-item {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #a0522d 100%);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  box-shadow: 2px 4px 8px rgba(0,0,0,0.2);
}

.social-links a:hover {
  transform: translateY(-2px) rotate(2deg);
  box-shadow: 4px 8px 16px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3509 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: var(--border-radius);
}

.footer-links a:hover,
.footer-links a.active {
  background-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.3);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #3d6b26 100%);
  color: white;
  padding: 1rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: all 0.5s ease;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 0.7rem 1.5rem;
  border: 2px solid white;
  background: transparent;
  color: white;
  border-radius: var(--border-radius);
  font-family: 'Kalam', cursive;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-buttons button:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Page-specific styles */
.page-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #3d6b26 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Caveat', cursive;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.legal-page {
  padding: 2rem 0;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  font-family: 'Caveat', cursive;
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.legal-section h3 {
  color: var(--secondary-color);
  margin: 1.5rem 0 1rem;
}

.legal-section ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
}

/* About page styles */
.about-story {
  padding: 4rem 0;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.story-text h2, .story-text h3 {
  font-family: 'Caveat', cursive;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.story-text h2 {
  font-size: 2.5rem;
}

.story-text h3 {
  font-size: 2rem;
  margin-top: 2rem;
}

.story-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.team-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fff8 0%, #e6f3e6 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 3px 5px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 6px 12px 24px rgba(0,0,0,0.2);
}

.team-member h3 {
  font-family: 'Caveat', cursive;
  color: var(--primary-color);
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem;
}

.values-section {
  padding: 4rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
}

.value-item h3 {
  font-family: 'Caveat', cursive;
  color: var(--primary-color);
  font-size: 1.5rem;
  margin: 1rem 0;
}

/* Blog page styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 4px 6px 12px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.blog-card:hover {
  transform: translateY(-5px) rotate(0.5deg);
  box-shadow: 6px 12px 24px rgba(0,0,0,0.2);
  border-color: var(--accent-color);
}

.blog-content-text {
  padding: 1.5rem;
}

.blog-content-text h2 {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog-content-text h2 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-content-text h2 a:hover {
  color: var(--secondary-color);
}

.blog-meta {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.read-more {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Thanks page styles */
.thanks-page {
  padding: 4rem 0;
}

.thanks-message {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thanks-message h1 {
  font-family: 'Caveat', cursive;
  color: var(--primary-color);
  font-size: 3rem;
  margin: 2rem 0 1rem;
}

.thanks-message p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.next-steps {
  background: linear-gradient(135deg, #f8fff8 0%, #e6f3e6 100%);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin: 2rem 0;
  text-align: left;
}

.next-steps h2 {
  font-family: 'Caveat', cursive;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.next-steps ul {
  margin-left: 2rem;
}

.next-steps li {
  margin-bottom: 0.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.contact-reminder {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-top: 3rem;
  text-align: center;
}

.contact-reminder h3 {
  font-family: 'Caveat', cursive;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cookie-preferences {
  margin: 2rem 0;
  text-align: center;
}

.cookie-settings-btn {
  background: linear-gradient(135deg, var(--primary-color) 0%, #3d6b26 100%);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  font-family: 'Kalam', cursive;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 2px 4px 8px rgba(0,0,0,0.2);
}

.cookie-settings-btn:hover {
  transform: translateY(-2px);
  box-shadow: 4px 8px 16px rgba(0,0,0,0.3);
}

/* Article page styles */
.article-page {
  padding: 2rem 0;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.article-header h1 {
  font-family: 'Caveat', cursive;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.article-meta {
  color: #666;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.article-image {
  text-align: center;
  margin: 3rem 0;
}

.main-illustration {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: 4px 6px 12px rgba(0,0,0,0.1);
  border: 2px solid var(--accent-color);
}

.article-body {
  line-height: 1.8;
  font-size: 1.1rem;
}

.article-intro {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fff8 0%, #e6f3e6 100%);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-color);
}

.article-body h2 {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  color: var(--primary-color);
  margin: 2.5rem 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.article-body h2::before {
  content: '🌿';
  font-size: 1.5rem;
}

.article-body h3 {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin: 2rem 0 1rem;
}

.article-body h4 {
  color: var(--primary-color);
  margin: 1.5rem 0 0.5rem;
  font-weight: 600;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body ul, .article-body ol {
  margin: 1rem 0 1.5rem 2rem;
}

.article-body li {
  margin-bottom: 0.5rem;
}

.tip-box {
  background: linear-gradient(135deg, #fff8dc 0%, #f0e68c 100%);
  border: 2px solid #daa520;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 2rem 0;
  position: relative;
}

.tip-box::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 1px solid #daa520;
  border-radius: var(--border-radius);
  transform: rotate(1deg);
  opacity: 0.5;
  z-index: -1;
}

.tip-box h4 {
  color: #b8860b;
  margin-bottom: 1rem;
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
}

.quote-box {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  border-left: 5px solid var(--primary-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 3rem 0;
  text-align: center;
  position: relative;
}

.quote-box::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: 'Caveat', cursive;
  opacity: 0.3;
}

.quote-box blockquote {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.quote-box cite {
  font-weight: 600;
  color: var(--secondary-color);
}

.plant-card {
  background: white;
  border: 2px solid var(--accent-color);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 2px 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

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

.plant-card h4 {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.plant-card ul {
  margin-left: 1rem;
}

.plant-card li {
  margin-bottom: 0.3rem;
}

.wood-comparison {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 2px 4px 8px rgba(0,0,0,0.1);
}

.wood-comparison th {
  background: linear-gradient(135deg, var(--primary-color) 0%, #3d6b26 100%);
  color: white;
  padding: 1rem;
  text-align: left;
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
}

.wood-comparison td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.wood-comparison tr:nth-child(even) {
  background: #f8fff8;
}

.wood-comparison tr:hover {
  background: var(--accent-color);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #3d6b26 100%);
  color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin: 3rem 0;
}

.cta-section h3 {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-section .cta-button {
  background: white;
  color: var(--primary-color);
  border: 2px solid white;
}

.cta-section .cta-button:hover {
  background: transparent;
  color: white;
}

.article-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--accent-color);
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.article-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.article-share span {
  font-weight: 600;
  color: var(--primary-color);
}

.article-share a {
  color: var(--secondary-color);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid var(--secondary-color);
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.article-share a:hover {
  background: var(--secondary-color);
  color: white;
}

/* Mobile menu styles */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  padding: 0.5rem;
}

.nav-menu.mobile-open {
  display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #fefefe 0%, #f0f8f0 100%);
    flex-direction: column;
    gap: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    z-index: 1000;
    padding: 1rem;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(45, 80, 22, 0.1);
  }
  
  .nav-menu a:hover {
    background-color: var(--accent-color);
  }
  
  .nav {
    position: relative;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .story-content {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cookie-content {
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .services-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}