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

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

#readProgressBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  z-index: 9999;
  transition: width 0.1s ease;
}

#languageGreeting {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 0;
  text-align: center;
  font-size: 14px;
}

.greeting-text {
  margin: 0;
}

.container-fluid {
  width: 100%;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

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

.container-post {
  width: 100%;
  padding: 0 20px;
  max-width: 800px;
  margin: 0 auto;
}

.main-header {
  background-color: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navigation-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo-section img {
  height: 60px;
  width: auto;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

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

.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 4px;
  transition: var(--transition);
}

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

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

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-large,
.btn-secondary-large,
.btn-primary-medium,
.btn-secondary-medium {
  display: inline-block;
  padding: 15px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: var(--transition);
  text-align: center;
}

.btn-primary-large,
.btn-primary-medium {
  background-color: var(--accent-color);
  color: var(--white);
}

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

.btn-secondary-large,
.btn-secondary-medium {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary-large:hover,
.btn-secondary-medium:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

section {
  padding: 80px 0;
}

.section-header-center {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-center h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.divider-line {
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 0 auto 20px;
}

.section-description {
  font-size: 18px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

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

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

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

.document-section {
  background-color: var(--background-light);
}

.row-reverse-layout,
.row-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 60px;
  align-items: center;
}

.col-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

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

.feature-list {
  margin: 30px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.feature-list svg {
  color: var(--success-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.col-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.process-section {
  background-color: var(--white);
}

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

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

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

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

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

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

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

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

.stat-label {
  font-size: 18px;
  opacity: 0.9;
}

.testimonials-section {
  background-color: var(--background-light);
}

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

.testimonial-card {
  background-color: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.testimonial-rating {
  color: var(--accent-color);
  font-size: 20px;
  margin-bottom: 20px;
}

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

.author-name {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.author-role {
  color: var(--text-light);
  font-size: 14px;
}

.faq-section {
  background-color: var(--white);
}

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

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

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

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

.faq-question h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin: 0;
}

.faq-toggle {
  font-size: 28px;
  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 25px;
  color: var(--text-light);
  line-height: 1.8;
}

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

.cta-content-box h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta-content-box p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.disclaimer-text {
  font-size: 14px;
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

.location-section {
  background-color: var(--background-light);
}

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

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

.location-item svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

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

.location-item a {
  color: var(--primary-color);
}

.location-item a:hover {
  text-decoration: underline;
}

.map-placeholder img,
.col-map img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

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

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

.footer-logo {
  margin-bottom: 20px;
}

.footer-column p {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--white);
}

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

.footer-links a,
.footer-contact a {
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact li {
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

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

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

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

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

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

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

.cookie-learn-more {
  color: var(--primary-color);
  font-weight: 600;
}

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

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

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

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

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

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

.cookie-reject {
  background-color: var(--text-light);
  color: var(--white);
}

.cookie-reject:hover {
  background-color: #6c7a7b;
}

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

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

.cookie-settings-content {
  background-color: var(--white);
  border-radius: 8px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-settings-content h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

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

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

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

.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

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

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

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

.page-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-subtitle {
  font-size: 18px;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

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

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

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

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

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

.blog-content {
  padding: 30px;
}

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

.blog-title {
  font-size: 22px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-title a {
  color: var(--text-dark);
  transition: var(--transition);
}

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

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

.blog-read-more {
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition);
}

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

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

.newsletter-box {
  background-color: var(--white);
  padding: 60px 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

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

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

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 16px;
}

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

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

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

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

.mission-box,
.vision-box {
  background-color: var(--white);
  padding: 50px 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.icon-large {
  color: var(--primary-color);
  margin-bottom: 25px;
}

.mission-box h3,
.vision-box h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.mission-box p,
.vision-box p {
  color: var(--text-light);
  line-height: 1.8;
}

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

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

.value-item {
  padding: 30px;
  border-left: 4px solid var(--accent-color);
  background-color: var(--background-light);
  border-radius: 4px;
}

.value-item h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

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

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

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

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

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

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

.team-member-card h3 {
  padding: 25px 25px 10px;
  font-size: 24px;
  color: var(--text-dark);
}

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

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

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

.achievements-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.achievements-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border-color);
  transform: translateX(-50%);
}

.achievement-item {
  position: relative;
  margin-bottom: 50px;
  padding-left: 60%;
}

.achievement-item:nth-child(even) {
  padding-left: 0;
  padding-right: 60%;
  text-align: right;
}

.achievement-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 700;
  top: 0;
}

.achievement-item h4 {
  font-size: 20px;
  margin: 50px 0 10px;
  color: var(--text-dark);
}

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

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

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

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

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

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

.contact-info-item {
  display: flex;
  gap: 20px;
}

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

.contact-details h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

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

.contact-details a {
  color: var(--primary-color);
}

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

.contact-availability {
  font-size: 14px;
  margin-top: 5px;
}

.contact-form-wrapper {
  background-color: var(--background-light);
  padding: 40px;
  border-radius: 8px;
}

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

.contact-form-wrapper > p {
  color: var(--text-light);
  margin-bottom: 30px;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  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(--primary-color);
}

.form-group-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-group-checkbox input {
  margin-top: 4px;
}

.form-group-checkbox a {
  color: var(--primary-color);
  text-decoration: underline;
}

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

.section-title-center {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.map-container img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

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

.contact-cta-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-cta-box h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-cta-box p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
}

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

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

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

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

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

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

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

.post-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 40px 0 30px;
}

.post-breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.post-breadcrumb a {
  color: var(--white);
  text-decoration: underline;
}

.post-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.post-meta-info {
  display: flex;
  gap: 20px;
  font-size: 14px;
  opacity: 0.9;
}

.post-featured-image {
  margin-bottom: 60px;
}

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

.post-content-wrapper {
  padding: 40px 0 80px;
}

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

.post-intro {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--text-light);
}

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

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

.post-content p {
  margin-bottom: 25px;
  line-height: 1.9;
  font-size: 17px;
  color: var(--text-light);
}

.post-content ul,
.post-content ol {
  margin: 25px 0;
  padding-left: 30px;
}

.post-content li {
  margin-bottom: 12px;
  line-height: 1.8;
  color: var(--text-light);
}

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

.post-cta-section {
  background-color: var(--background-light);
  padding: 50px 40px;
  border-radius: 8px;
  text-align: center;
  margin: 60px 0 40px;
}

.post-cta-section h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.post-cta-section p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

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

  .nav-menu {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: var(--white);
    flex-direction: column;
    padding: 40px 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }

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

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

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

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

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

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

  .achievements-timeline::before {
    left: 20px;
  }

  .achievement-item,
  .achievement-item:nth-child(even) {
    padding-left: 60px;
    padding-right: 0;
    text-align: left;
  }

  .achievement-year {
    left: 20px;
    transform: translateX(0);
  }

  .post-title {
    font-size: 32px;
  }

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

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

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

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

  .section-header-center h2 {
    font-size: 28px;
  }

  .page-title {
    font-size: 32px;
  }

  .post-title {
    font-size: 26px;
  }

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

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