:root {
  --primary-color: #1a5490;
  --secondary-color: #2c7cc1;
  --accent-color: #f39c12;
  --text-dark: #2c3e50;
  --text-light: #5a6c7d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e1e8ed;
  --success-color: #27ae60;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

.container-fluid {
  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-header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.navbar-primary {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  height: 50px;
  width: auto;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 3px 0;
  transition: var(--transition);
}

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

.nav-item {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 100%;
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--bg-white);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: 50px 50px;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.btn-primary {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--bg-white);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-primary:hover {
  background-color: #e67e22;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.btn-secondary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.story-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.story-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.story-heading {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 30px;
}

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

.learn-section,
.featured-courses,
.process-section,
.testimonials-section,
.faq-section {
  padding: 80px 0;
}

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

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 20px auto 0;
}

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

.learn-card {
  background-color: var(--bg-white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.learn-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.learn-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.learn-card h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.learn-card p {
  color: var(--text-light);
  line-height: 1.7;
}

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

.course-box {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.course-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.course-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.course-content {
  padding: 25px;
}

.course-content h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.course-duration {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.course-price {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--bg-white);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 15px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  background-color: var(--bg-light);
  border-radius: 12px;
  transition: var(--transition);
}

.process-step:hover {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.process-step p {
  color: var(--text-light);
}

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

.testimonial-card {
  background-color: var(--bg-white);
  padding: 35px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.quote-icon {
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  right: 20px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 5px;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

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

.faq-item {
  background-color: var(--bg-white);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--bg-light);
}

.faq-question h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.faq-toggle {
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 300;
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 25px 20px;
  color: var(--text-light);
  line-height: 1.7;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-box {
  text-align: center;
  color: var(--bg-white);
}

.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-box p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.site-footer {
  background-color: #1a2332;
  color: #a0aec0;
  padding: 60px 0 30px;
}

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

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}

.footer-description {
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.registration-number {
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-heading {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

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

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

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 3px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  box-shadow: 0 -4px 10px rgba(0,0,0,0.15);
  padding: 25px 0;
  z-index: 10000;
  transition: bottom 0.5s ease;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-text h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.cookie-text p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.cookie-text a {
  color: var(--primary-color);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.95rem;
}

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

.cookie-btn.accept-all:hover {
  background-color: #229954;
}

.cookie-btn.customize {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

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

.cookie-btn.decline {
  background-color: var(--border-color);
  color: var(--text-dark);
}

.cookie-btn.decline:hover {
  background-color: #d0d7de;
}

.page-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-white);
  padding: 80px 0 60px;
  text-align: center;
}

.page-title {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
}

.blog-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 35px;
}

.blog-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-image-wrapper {
  position: relative;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-color);
  color: var(--bg-white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-content {
  padding: 25px;
}

.blog-title {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.4;
}

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

.blog-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.blog-date {
  display: flex;
  align-items: center;
  gap: 5px;
}

.newsletter-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

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

.newsletter-box h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.newsletter-box p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 15px 20px;
  border: 2px solid var(--border-color);
  border-radius: 50px;
  font-size: 1rem;
  transition: var(--transition);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.newsletter-btn {
  padding: 15px 35px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background-color: var(--secondary-color);
}

.about-mission {
  padding: 80px 0;
}

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

.mission-text h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 25px;
}

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

.mission-image img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.values-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.value-card {
  background-color: var(--bg-white);
  padding: 35px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.value-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.value-card h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.value-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.team-section {
  padding: 80px 0;
}

.team-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--text-light);
  font-size: 1.1rem;
}

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

.team-member {
  text-align: center;
}

.team-photo {
  width: 100%;
  max-width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 25px;
  box-shadow: var(--shadow-md);
}

.team-member h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-bio {
  color: var(--text-light);
  line-height: 1.7;
}

.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

.stat-box {
  text-align: center;
  color: var(--bg-white);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.95;
}

.partners-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.partners-text {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--text-light);
  line-height: 1.8;
}

.partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.partner-item {
  padding: 15px 30px;
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  color: var(--text-dark);
}

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

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

.contact-info h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.contact-info > p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 30px;
}

.info-block {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

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

.info-content h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.info-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.info-content a {
  color: var(--primary-color);
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

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

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

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

textarea.form-input {
  resize: vertical;
}

.form-submit-btn {
  width: 100%;
  padding: 15px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit-btn:hover {
  background-color: var(--secondary-color);
}

.map-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}

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

.modal.show {
  display: flex;
}

.modal-content {
  background-color: var(--bg-white);
  padding: 50px;
  border-radius: 12px;
  max-width: 500px;
  text-align: center;
  position: relative;
  animation: fadeInUp 0.5s ease;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-icon {
  color: var(--success-color);
  margin-bottom: 20px;
}

.modal-content h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.modal-content p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 30px;
}

.modal-btn {
  padding: 12px 40px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.modal-btn:hover {
  background-color: var(--secondary-color);
}

.post-article {
  padding: 60px 0;
}

.post-header {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.post-category {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--bg-white);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.post-title {
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.post-meta {
  display: flex;
  gap: 25px;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.95rem;
}

.post-featured-image {
  max-width: 1000px;
  margin: 0 auto 50px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.post-featured-image img {
  width: 100%;
  height: auto;
}

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

.lead-paragraph {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 35px;
  font-weight: 500;
}

.post-content h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin: 40px 0 20px;
}

.post-content h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin: 30px 0 15px;
}

.post-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.post-content strong {
  color: var(--text-dark);
  font-weight: 600;
}

.post-footer {
  max-width: 800px;
  margin: 50px auto 0;
  padding-top: 30px;
  border-top: 2px solid var(--border-color);
}

.post-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

.post-navigation {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.nav-prev,
.nav-next {
  flex: 1;
  padding: 20px;
  background-color: var(--bg-light);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-prev:hover,
.nav-next:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.nav-label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 5px;
}

.nav-title {
  display: block;
  font-weight: 600;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 80px);
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
  }

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

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .post-title {
    font-size: 2rem;
  }

  .post-navigation {
    flex-direction: column;
  }

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

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

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    width: 100%;
  }
}