:root {
  --primary-color: #2c3e50;
  --secondary-color: #3498db;
  --accent-color: #e74c3c;
  --text-color: #333333;
  --text-light: #666666;
  --bg-color: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #1a1a1a;
  --border-color: #e0e0e0;
  --success-color: #27ae60;
  --warning-color: #f39c12;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: 'Georgia', serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
  overflow-x: hidden;
}

.accessibility-panel {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accessibility-panel button {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.accessibility-panel button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.tooltip-trigger {
  position: relative;
}

.tooltip-content {
  position: absolute;
  background: var(--bg-dark);
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  pointer-events: none;
}

.tooltip-trigger:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}

.accessibility-panel .tooltip-content {
  right: 110%;
  top: 50%;
  transform: translateY(-50%);
}

.main-header {
  background: var(--primary-color);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 998;
  box-shadow: var(--shadow);
}

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

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

.site-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

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

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 8px 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link:hover,
.nav-link.active {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

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

.hero-section {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 152, 219, 0.8));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s backwards;
}

.cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  animation: fadeInUp 1s ease 0.4s backwards;
}

.cta-button:hover {
  background: #c0392b;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

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

.intro-section,
.features-section,
.latest-posts-section,
.services-section,
.process-section,
.faq-section,
.testimonials-section {
  padding: 80px 0;
}

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

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

.intro-text h2 {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.intro-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.intro-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.section-heading {
  text-align: center;
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 20px;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  border-radius: 2px;
}

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

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

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

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

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

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

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

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

.post-preview-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

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

.post-preview-content h3 a:hover {
  color: var(--secondary-color);
}

.post-meta {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

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

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

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

.view-all-posts {
  text-align: center;
  margin-top: 3rem;
}

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

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

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

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

.service-item {
  background: white;
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.service-item i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

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

.service-item p {
  color: var(--text-light);
}

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

.process-step {
  text-align: center;
  padding: 30px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

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

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

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

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

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 25px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

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

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.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.8;
}

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

.testimonial-card {
  background: white;
  padding: 35px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.testimonial-stars {
  color: #f39c12;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.testimonial-text {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 0.3rem;
}

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

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

.cta-content h2 {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-primary-large {
  display: inline-block;
  background: white;
  color: var(--primary-color);
  padding: 15px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: var(--transition);
}

.btn-primary-large:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.main-footer {
  background: var(--bg-dark);
  color: #cccccc;
  padding: 60px 0 20px;
}

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

.footer-column h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-column p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.company-reg {
  font-size: 0.9rem;
  color: #999;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: var(--secondary-color);
  margin-top: 3px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #333;
  color: #999;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h3 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-text p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.cookie-policy-link {
  color: var(--secondary-color);
  font-weight: 600;
  text-decoration: none;
}

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

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

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

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

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

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

.btn-reject {
  background: #95a5a6;
  color: white;
}

.btn-reject:hover {
  background: #7f8c8d;
}

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

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

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.cookie-option {
  display: flex;
  gap: 20px;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.cookie-switch {
  position: relative;
  width: 60px;
  height: 34px;
  flex-shrink: 0;
}

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

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

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

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

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

.cookie-option-text strong {
  display: block;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

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

.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 2rem;
}

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

.page-title {
  font-size: 3rem;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
  padding: 60px 0;
}

.blog-post-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  transition: var(--transition);
}

.blog-post-card:hover {
  box-shadow: var(--shadow-hover);
}

.post-image-wrapper {
  position: relative;
}

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

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

.post-card-content {
  padding: 40px;
}

.post-card-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

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

.post-card-title a:hover {
  color: var(--secondary-color);
}

.post-metadata {
  display: flex;
  gap: 20px;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.post-metadata span {
  color: var(--text-light);
  font-size: 0.95rem;
}

.post-excerpt {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.btn-read-more {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn-read-more:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.sidebar-widget {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.widget-title {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.search-input {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
}

.search-button {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.search-button:hover {
  background: var(--primary-color);
}

.categories-list {
  list-style: none;
}

.categories-list li {
  margin-bottom: 1rem;
}

.categories-list a {
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 5px;
  transition: var(--transition);
}

.categories-list a:hover {
  background: var(--bg-light);
  color: var(--secondary-color);
}

.categories-list span {
  background: var(--bg-light);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.85rem;
}

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

.tag-item {
  background: var(--bg-light);
  color: var(--text-color);
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.tag-item:hover {
  background: var(--secondary-color);
  color: white;
}

.highlight-widget {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: white;
}

.highlight-widget .widget-title {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.highlight-widget p {
  line-height: 1.8;
}

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

.mission-text h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

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

.mission-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 10px;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

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

.mission-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

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

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

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

.value-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

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

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

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

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

.team-member-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

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

.member-info {
  padding: 30px;
}

.member-info h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

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

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

.story-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.timeline-marker {
  width: 80px;
  height: 80px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow);
}

.timeline-content h3 {
  color: var(--primary-color);
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}

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

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.location-info h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-info address {
  font-style: normal;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.location-info address p {
  margin-bottom: 0.5rem;
}

.office-hours h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.office-hours p {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.location-map img {
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.contact-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  padding: 60px 0;
}

.contact-info-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 25px;
}

.contact-info-card h2 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info-card address {
  font-style: normal;
  color: var(--text-light);
  line-height: 1.8;
}

.contact-info-card a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
}

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

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.contact-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.form-container {
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

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

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

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

.checkbox-label input {
  margin-top: 3px;
  cursor: pointer;
}

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

.btn-submit {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

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

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

.reason-card i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

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

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

.thank-you-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.thank-you-modal.show {
  display: flex;
}

.modal-content-thanks {
  background: white;
  padding: 60px 40px;
  border-radius: 15px;
  max-width: 500px;
  text-align: center;
}

.modal-icon {
  font-size: 5rem;
  color: var(--success-color);
  margin-bottom: 1.5rem;
}

.modal-content-thanks h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.modal-content-thanks p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.modal-note {
  font-size: 0.9rem;
  color: var(--text-light);
}

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

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

.breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

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

.breadcrumb i {
  margin: 0 10px;
  font-size: 0.8rem;
}

.breadcrumb span {
  color: var(--text-light);
}

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

.post-header-section {
  padding: 40px 0 20px;
}

.post-title {
  font-size: 2.8rem;
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

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

.post-featured-image {
  width: 100%;
  margin: 30px 0;
}

.post-featured-image img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 15px;
}

.post-body {
  padding: 40px 0;
}

.lead-paragraph {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.post-body h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin: 2.5rem 0 1.5rem;
  font-family: var(--font-heading);
}

.post-body p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

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

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.tag-label {
  font-weight: 600;
  color: var(--primary-color);
}

.post-tag {
  background: var(--bg-light);
  color: var(--text-color);
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.post-tag:hover {
  background: var(--secondary-color);
  color: white;
}

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

.nav-back,
.nav-next {
  padding: 12px 25px;
  background: var(--bg-light);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
}

.nav-back:hover,
.nav-next:hover {
  background: var(--secondary-color);
  color: white;
}

.related-posts {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--border-color);
}

.related-posts h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}

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

.related-post-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

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

.related-post-card h3 {
  padding: 20px;
  font-size: 1.1rem;
}

.related-post-card a {
  color: var(--primary-color);
  text-decoration: none;
}

.related-post-card a:hover {
  color: var(--secondary-color);
}

.related-date {
  padding: 0 20px 20px;
  color: var(--text-light);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

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

  .mission-content,
  .intro-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .header-container {
    flex-direction: column;
    gap: 20px;
  }

  .main-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .hero-section {
    height: 400px;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .mission-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .accessibility-panel {
    top: auto;
    bottom: 20px;
    right: 10px;
  }

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

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

@media (max-width: 480px) {
  .section-heading {
    font-size: 1.8rem;
  }

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

  .features-grid,
  .services-grid,
  .process-timeline {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 30px 20px;
  }
}

@media print {
  .accessibility-panel,
  .cookie-banner,
  .main-header,
  .main-footer,
  .post-navigation,
  .related-posts {
    display: none;
  }
}