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

:root {
  --primary-color: #1a5490;
  --secondary-color: #2c7ab8;
  --accent-color: #f39c12;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #27ae60;
  --error-color: #e74c3c;
  --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(--bg-white);
}

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

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

.main-navigation {
  background-color: var(--bg-white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  padding: 8px 0;
  position: relative;
}

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

.nav-menu a:hover::after,
.nav-menu a.active-link::after {
  width: 100%;
}

.nav-menu a.active-link {
  color: var(--primary-color);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--bg-white);
  padding: 80px 20px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--accent-color);
  color: var(--bg-white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.cta-button:hover {
  background-color: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.stats-bar {
  background-color: var(--bg-light);
  padding: 50px 0;
}

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

.stat-item {
  text-align: center;
  padding: 20px;
  background-color: var(--bg-white);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 10px 0;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.95rem;
}

.main-content {
  padding: 60px 0;
}

.section-heading {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-weight: 700;
}

.section-heading.centered {
  text-align: center;
}

.intro-section {
  margin-bottom: 80px;
}

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

.intro-text .lead-paragraph {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-dark);
}

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

.link-with-arrow {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: var(--transition);
}

.link-with-arrow:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

.rounded-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.features-section {
  margin-bottom: 80px;
}

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

.feature-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: var(--transition);
}

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

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

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

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

.recent-posts-section {
  margin-bottom: 80px;
}

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

.post-card-preview {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: var(--transition);
}

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

.post-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.post-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.post-card-preview:hover .post-thumbnail {
  transform: scale(1.05);
}

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

.post-title-preview {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

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

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

.read-more-link:hover {
  color: var(--secondary-color);
}

.centered-cta {
  text-align: center;
  margin-top: 40px;
}

.cta-button-secondary {
  display: inline-block;
  padding: 12px 35px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition);
}

.cta-button-secondary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

.checklist-section {
  background-color: var(--bg-light);
  padding: 60px 40px;
  border-radius: 15px;
  margin-bottom: 80px;
}

.checklist-intro {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: var(--text-light);
}

.checklist-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.checklist-item {
  margin-bottom: 20px;
}

.checklist-checkbox {
  display: none;
}

.checklist-item label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  gap: 15px;
}

.checkbox-custom {
  min-width: 24px;
  height: 24px;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  position: relative;
  transition: var(--transition);
}

.checklist-checkbox:checked + label .checkbox-custom {
  background-color: var(--primary-color);
}

.checklist-checkbox:checked + label .checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--bg-white);
  font-weight: bold;
}

.checklist-text {
  flex: 1;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 80px 40px;
  border-radius: 15px;
  text-align: center;
  color: var(--bg-white);
  margin-bottom: 80px;
}

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

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

.cta-button-large {
  display: inline-block;
  padding: 18px 50px;
  background-color: var(--accent-color);
  color: var(--bg-white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button-large:hover {
  background-color: #e67e22;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.site-footer {
  background-color: #2c3e50;
  color: var(--bg-white);
  padding: 60px 0 20px;
}

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

.footer-heading {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-description {
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 15px;
}

.footer-reg {
  opacity: 0.7;
  font-size: 0.9rem;
}

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

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

.footer-links a {
  color: var(--bg-white);
  text-decoration: none;
  opacity: 0.9;
  transition: var(--transition);
}

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

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

.footer-contact li {
  margin-bottom: 12px;
  opacity: 0.9;
  line-height: 1.6;
}

.footer-contact a {
  color: var(--bg-white);
  text-decoration: none;
  transition: var(--transition);
}

.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);
  opacity: 0.8;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 62, 80, 0.98);
  color: var(--bg-white);
  padding: 25px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  z-index: 10000;
  display: none;
}

.cookie-consent.show {
  display: block;
}

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

.cookie-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.cookie-description {
  opacity: 0.9;
  line-height: 1.6;
}

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

.cookie-actions {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

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

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

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

.cookie-decline {
  background-color: var(--error-color);
  color: var(--bg-white);
}

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

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

.cookie-customize:hover {
  background-color: var(--bg-light);
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.7);
  z-index: 10001;
  align-items: center;
  justify-content: center;
}

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

.modal-content-cookie {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-title {
  margin-bottom: 25px;
  color: var(--text-dark);
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
}

.cookie-option:last-of-type {
  border-bottom: none;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-switch {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: var(--transition);
  border-radius: 26px;
}

.slider-switch::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: var(--bg-white);
  transition: var(--transition);
  border-radius: 50%;
}

.cookie-switch input:checked + .slider-switch {
  background-color: var(--success-color);
}

.cookie-switch input:checked + .slider-switch::before {
  transform: translateX(24px);
}

.cookie-switch input:disabled + .slider-switch {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-option-text {
  flex: 1;
}

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

.cookie-option-text p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

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

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

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

.blog-intro {
  margin-bottom: 50px;
}

.intro-text-blog {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.blog-posts-listing {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-post-card {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 30px;
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: var(--transition);
}

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

.post-image-container {
  position: relative;
  height: 250px;
}

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

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

.post-details {
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.post-title-main {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.post-title-main a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.post-title-main a:hover {
  color: var(--primary-color);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.post-summary {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.read-more-btn {
  align-self: flex-start;
  padding: 10px 25px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
}

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

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

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

.about-main-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.values-section {
  margin-bottom: 80px;
}

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

.value-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  text-align: center;
  transition: var(--transition);
}

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

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

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

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

.team-section {
  margin-bottom: 80px;
}

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

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

.team-member-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  transition: var(--transition);
}

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

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

.member-info {
  padding: 25px;
}

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

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

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

.achievements-section {
  background-color: var(--bg-light);
  padding: 60px 40px;
  border-radius: 15px;
  margin-bottom: 80px;
}

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

.achievement-item {
  text-align: center;
  padding: 30px;
  background-color: var(--bg-white);
  border-radius: 10px;
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

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

.methodology-section {
  margin-bottom: 80px;
}

.methodology-content {
  margin-top: 30px;
}

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

.methodology-list {
  list-style: none;
  counter-reset: methodology-counter;
  margin-top: 30px;
}

.methodology-list li {
  counter-increment: methodology-counter;
  margin-bottom: 25px;
  padding-left: 50px;
  position: relative;
  line-height: 1.8;
  color: var(--text-light);
}

.methodology-list li::before {
  content: counter(methodology-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.methodology-list li strong {
  color: var(--text-dark);
}

.contact-intro-section {
  margin-bottom: 50px;
}

.contact-intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
}

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

.contact-form {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

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

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

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

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 84, 144, 0.1);
}

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

.error-message {
  display: block;
  color: var(--error-color);
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--primary-color);
}

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

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

.submit-button:disabled {
  background-color: var(--text-light);
  cursor: not-allowed;
}

.contact-info-container {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 12px;
}

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

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

.info-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

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

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

.info-content a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

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

.map-container {
  margin-top: 40px;
}

.map-heading {
  margin-bottom: 15px;
  color: var(--text-dark);
}

.map-placeholder {
  background-color: var(--bg-white);
  padding: 60px 20px;
  border-radius: 8px;
  text-align: center;
  color: var(--text-light);
  border: 2px dashed var(--border-color);
}

.faq-contact-section {
  margin-bottom: 80px;
}

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

.faq-item {
  background-color: var(--bg-white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.faq-question {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.7;
}

.success-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.7);
  z-index: 10001;
  align-items: center;
  justify-content: center;
}

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

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

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--success-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 25px;
}

.success-title {
  color: var(--text-dark);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.success-message {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 30px;
}

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

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

.post-article {
  background-color: var(--bg-white);
}

.article-header {
  padding: 40px 0 30px;
  background-color: var(--bg-light);
}

.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover {
  color: var(--secondary-color);
}

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

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 0.95rem;
  color: var(--text-light);
}

.meta-author,
.meta-date,
.meta-reading,
.meta-views {
  display: flex;
  align-items: center;
  gap: 5px;
}

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

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

.article-content {
  padding: 60px 0;
  line-height: 1.8;
}

.article-content .lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-weight: 500;
}

.article-content h2 {
  font-size: 2rem;
  margin-top: 50px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.article-content h3 {
  font-size: 1.5rem;
  margin-top: 35px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

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

.article-content strong {
  color: var(--text-dark);
}

.article-footer {
  padding: 40px 0;
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 40px;
}

.article-tags {
  margin-bottom: 25px;
}

.tag-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-right: 10px;
}

.tag {
  display: inline-block;
  padding: 6px 15px;
  background-color: var(--bg-light);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 20px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.tag:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.article-share {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.share-label {
  font-weight: 600;
  color: var(--text-dark);
}

.share-btn {
  padding: 8px 20px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

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

.back-to-blog {
  margin-bottom: 60px;
}

.back-link {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.back-link:hover {
  color: var(--secondary-color);
  transform: translateX(-5px);
}

@media (max-width: 968px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

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

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

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

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

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

  .post-image-container {
    height: 200px;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

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

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cookie-btn {
    width: 100%;
  }

  .article-title {
    font-size: 1.8rem;
  }

  .article-meta {
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .hero-section {
    min-height: 400px;
    padding: 60px 20px;
  }

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

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

  .section-heading {
    font-size: 1.8rem;
  }

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

  .cta-heading {
    font-size: 1.8rem;
  }

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