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

:root {
  --primary-color: #2c5f2d;
  --secondary-color: #97c055;
  --accent-color: #4a8b3d;
  --text-dark: #2d3436;
  --text-light: #636e72;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #dfe6e9;
  --shadow: rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.main-navigation {
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
}

.brand-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--secondary-color);
  color: var(--white);
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--white);
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 500px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.animated-title {
  font-size: 48px;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}

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

.greeting-multilang {
  font-size: 18px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background: var(--white);
  color: var(--primary-color);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.hero-image {
  flex: 1;
  max-width: 500px;
}

.hero-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.features-section,
.latest-posts,
.info-section {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 15px auto 0;
  border-radius: 2px;
}

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

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.hover-title {
  color: var(--primary-color);
  margin-bottom: 15px;
  transition: var(--transition);
}

.feature-card:hover .hover-title {
  color: var(--accent-color);
}

.posts-preview,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.post-preview-card,
.blog-post-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
}

.post-preview-card:hover,
.blog-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.post-preview-card img,
.blog-post-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.post-preview-content,
.post-content {
  padding: 25px;
}

.post-meta,
.post-meta-info {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.post-date,
.post-category {
  background: var(--bg-light);
  padding: 5px 12px;
  border-radius: 15px;
}

.post-excerpt {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.read-more,
.post-link {
  color: var(--accent-color);
  font-weight: bold;
  transition: var(--transition);
}

.read-more:hover,
.post-link:hover {
  color: var(--primary-color);
}

.info-section {
  background: var(--bg-light);
}

.info-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.info-text {
  font-size: 18px;
  line-height: 1.8;
}

.info-text p {
  margin-bottom: 20px;
}

.info-image img {
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.page-subtitle {
  font-size: 20px;
  margin-top: 15px;
  opacity: 0.9;
}

.about-intro {
  padding: 80px 20px;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 25px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-light);
}

.team-section {
  padding: 80px 20px;
  background: var(--bg-light);
}

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

.team-member-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-member-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-member-card h3 {
  padding: 20px 20px 10px;
  color: var(--primary-color);
}

.member-role {
  color: var(--accent-color);
  font-weight: bold;
  padding: 0 20px;
  margin-bottom: 15px;
}

.member-bio {
  padding: 0 20px 30px;
  color: var(--text-light);
  line-height: 1.6;
}

.values-section {
  padding: 80px 20px;
}

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

.value-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  text-align: center;
}

.value-icon {
  font-size: 50px;
  margin-bottom: 20px;
}

.contact-section {
  padding: 80px 20px;
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 30px;
  color: var(--accent-color);
}

.contact-text h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.contact-text a {
  color: var(--accent-color);
}

.contact-text a:hover {
  text-decoration: underline;
}

.reg-info {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid var(--border-color);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
}

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

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.submit-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 15px 40px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

.modal-icon {
  font-size: 80px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.modal-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}

.post-page {
  background: var(--white);
}

.post-header {
  padding: 40px 20px;
  background: var(--bg-light);
}

.breadcrumbs {
  margin-bottom: 20px;
  color: var(--text-light);
}

.breadcrumbs a {
  color: var(--accent-color);
}

.post-featured-image {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}

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

.post-content-wrapper {
  padding: 60px 20px;
}

.post-main-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
}

.lead-paragraph {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 40px;
  line-height: 1.7;
}

.post-main-content h2 {
  color: var(--primary-color);
  margin: 40px 0 20px;
  font-size: 32px;
}

.post-main-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.content-image {
  margin: 40px auto;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
}

.post-conclusion {
  margin-top: 60px;
  padding: 40px;
  background: var(--bg-light);
  border-radius: 15px;
  border-left: 5px solid var(--accent-color);
}

.related-posts {
  padding: 60px 20px;
  background: var(--bg-light);
}

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

.related-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: var(--transition);
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-card h3 {
  padding: 20px;
  color: var(--primary-color);
}

.main-footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 60px 20px 20px;
}

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

.footer-section h4 {
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--secondary-color);
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--white);
  opacity: 0.9;
  transition: var(--transition);
}

.footer-section a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.reg-number {
  margin-top: 15px;
  font-size: 14px;
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.8;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -5px 20px var(--shadow);
  z-index: 1500;
  padding: 30px 20px;
}

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

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.cookie-text p {
  color: var(--text-light);
  margin-bottom: 10px;
}

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

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

.cookie-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn.accept-all {
  background: var(--primary-color);
  color: var(--white);
}

.cookie-btn.accept-all:hover {
  background: var(--accent-color);
}

.cookie-btn.customize {
  background: var(--bg-light);
  color: var(--text-dark);
}

.cookie-btn.customize:hover {
  background: var(--border-color);
}

.cookie-btn.reject {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-color);
}

.cookie-btn.reject:hover {
  border-color: var(--text-dark);
}

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

.cookie-settings-content {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  max-width: 600px;
  width: 90%;
}

.cookie-settings-content h3 {
  color: var(--primary-color);
  margin-bottom: 30px;
}

.cookie-option {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.cookie-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  margin-bottom: 10px;
  cursor: pointer;
}

.cookie-option p {
  color: var(--text-light);
  font-size: 14px;
  margin-left: 30px;
}

.cookie-settings-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

@media (max-width: 968px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .animated-title {
    font-size: 36px;
  }

  .info-content,
  .about-content-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}

@media (max-width: 640px) {
  .animated-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

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

  .features-grid,
  .posts-preview,
  .blog-grid {
    grid-template-columns: 1fr;
  }

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

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