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

:root {
  --primary-color: #2d5016;
  --secondary-color: #6b8e23;
  --accent-color: #ff6b35;
  --text-dark: #333333;
  --text-light: #666666;
  --background-light: #f9f7f4;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --warning-color: #ff9800;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.8;
  color: var(--text-dark);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Arial', 'Helvetica', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

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

.fancy-border {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.main-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--white);
}

.logo-section h1 {
  color: var(--white);
  font-size: 1.5rem;
  margin: 0;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.main-navigation a {
  color: var(--white);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.main-navigation a:hover {
  background: rgba(255,255,255,0.2);
}

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

.hero-content h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4);
}

.hero-image-wrapper img {
  width: 100%;
}

.quote-section {
  background: var(--background-light);
  padding: 3rem 2rem;
  margin: 3rem 0;
}

.quote-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.quote-icon {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.daily-quote p {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.daily-quote cite {
  color: var(--text-light);
  font-size: 1.1rem;
}

.featured-posts, .benefits-section, .newsletter-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

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

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-light);
}

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

.post-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.post-image-container {
  overflow: hidden;
  height: 250px;
}

.post-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card:hover .post-image-container img {
  transform: scale(1.05);
}

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.post-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.read-more {
  color: var(--accent-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.benefits-wrapper {
  text-align: center;
}

.benefits-wrapper h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item {
  padding: 2rem;
  background: var(--background-light);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  margin-bottom: 1rem;
}

.benefit-icon svg {
  color: var(--secondary-color);
  margin: 0 auto;
}

.benefit-item h3 {
  margin-bottom: 1rem;
}

.newsletter-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 4rem 2rem;
  border-radius: 12px;
  text-align: center;
}

.newsletter-container h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.newsletter-container p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  gap: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 1rem 2rem;
  background: var(--accent-color);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #e55a2b;
}

.main-footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-column p, .footer-column a {
  color: #cccccc;
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column a:hover {
  color: var(--accent-color);
}

.registration-info {
  font-size: 0.9rem;
  margin-top: 1rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #555;
  color: #cccccc;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  padding: 2rem;
  z-index: 10000;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content h3 {
  margin-bottom: 1rem;
}

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

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accept-all {
  background: var(--success-color);
  color: var(--white);
}

.customize {
  background: var(--warning-color);
  color: var(--white);
}

.decline {
  background: #666;
  color: var(--white);
}

.cookie-link {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-hero {
  background: linear-gradient(rgba(45,80,22,0.7), rgba(45,80,22,0.7)), url('images/1.jpg') center/cover;
  color: var(--white);
  padding: 6rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.hero-overlay h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-overlay p {
  font-size: 1.3rem;
}

.blog-container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.blog-posts-wrapper {
  display: grid;
  gap: 3rem;
}

.blog-post-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 2rem;
}

.post-thumbnail {
  height: 100%;
  overflow: hidden;
}

.post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-details {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.post-category {
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
}

.post-date {
  color: var(--text-light);
}

.blog-post-card h2 {
  margin-bottom: 1rem;
}

.blog-post-card h2 a {
  color: var(--primary-color);
}

.blog-post-card h2 a:hover {
  color: var(--accent-color);
}

.post-link {
  color: var(--accent-color);
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
}

.story-section, .team-section, .values-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.story-container h2, .team-container h2, .values-container h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

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

.story-text p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.team-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

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

.team-member {
  background: var(--background-light);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.member-photo {
  margin-bottom: 1.5rem;
}

.member-photo img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 50%;
}

.member-role {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--text-light);
  line-height: 1.6;
}

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

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

.value-icon svg {
  color: var(--secondary-color);
  margin: 0 auto 1rem;
}

.contact-section {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info {
  background: var(--background-light);
  padding: 2rem;
  border-radius: 12px;
}

.info-block {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.info-icon svg {
  color: var(--secondary-color);
  flex-shrink: 0;
}

.info-hours {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.registration-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.contact-form-container {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-description {
  color: var(--text-light);
  margin-bottom: 2rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.checkbox-label {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-weight: 400;
}

.checkbox-label input {
  margin-top: 0.25rem;
}

.submit-btn {
  background: var(--accent-color);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #e55a2b;
}

.map-section {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding: 0 2rem;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.modal-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  max-width: 500px;
  text-align: center;
}

.success-icon {
  color: var(--success-color);
  margin: 0 auto 1rem;
}

.modal-close {
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

.post-article {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 2rem;
}

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

.article-meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.article-category {
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
}

.article-date, .article-author {
  color: var(--text-light);
}

.article-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.article-excerpt {
  font-size: 1.2rem;
  color: var(--text-light);
  font-style: italic;
}

.article-featured-image {
  margin: 2rem 0;
}

.article-content {
  font-size: 1.1rem;
  line-height: 1.9;
}

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

.content-section h2 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.content-section p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
}

.benefits-list li {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  position: relative;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.recipe-box {
  background: var(--background-light);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  border-left: 4px solid var(--secondary-color);
}

.recipe-box h3 {
  margin-bottom: 1rem;
}

.recipe-box ul, .recipe-box ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.recipe-box li {
  margin-bottom: 0.75rem;
}

.article-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}

.article-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.tag {
  background: var(--background-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.article-share {
  margin-top: 1rem;
}

.share-btn {
  background: var(--secondary-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0;
  gap: 1rem;
}

.nav-link {
  padding: 1rem 2rem;
  background: var(--background-light);
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.nav-link:hover {
  background: var(--secondary-color);
  color: var(--white);
}

@media (max-width: 968px) {
  .hero-banner, .story-content, .contact-wrapper {
    grid-template-columns: 1fr;
  }
  
  .blog-post-card {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .main-navigation ul {
    gap: 1rem;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .hero-content h2, .section-header h2 {
    font-size: 2rem;
  }
  
  .post-navigation {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .main-navigation ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .article-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}