:root {
  --primary-color: #1a5490;
  --secondary-color: #2c7ac2;
  --accent-color: #f39c12;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --background-light: #f8f9fa;
  --border-color: #e1e8ed;
  --success-color: #27ae60;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  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);
}

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

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

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

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

.logo-img {
  border-radius: 8px;
}

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

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

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

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

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

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

.font-control-btn {
  background-color: var(--background-light);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.font-control-btn:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.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;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,84,144,0.85), rgba(44,122,194,0.85));
  z-index: 0;
}

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

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

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

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

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

.section-heading {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

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

.intro-section,
.continuum-section,
.transition-section,
.risk-section,
.thinking-section,
.mistakes-section,
.cta-section,
.disclaimer-section {
  padding: 80px 0;
}

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

.intro-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
}

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

.continuum-card {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.card-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.card-description {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-dark);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

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

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

.transition-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.transition-points {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.point-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  min-width: 40px;
}

.point-content h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

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

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

.risk-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 50px;
}

.risk-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-marker {
  position: absolute;
  left: -38px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent-color);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.timeline-content {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

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

.timeline-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.risk-metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.metric {
  background-color: var(--background-light);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
}

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

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

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

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

.thinking-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.thinking-card h3 {
  padding: 20px 25px 10px;
  font-size: 1.4rem;
  color: var(--primary-color);
}

.thinking-card p {
  padding: 0 25px 25px;
  line-height: 1.7;
  color: var(--text-dark);
}

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

.mistake-item {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.mistake-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  min-width: 60px;
  opacity: 0.3;
}

.mistake-content h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

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

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

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

.cta-text {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.95;
}

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

.cta-btn {
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 2px solid transparent;
}

.cta-btn.primary {
  background-color: var(--accent-color);
  color: var(--white);
}

.cta-btn.primary:hover {
  background-color: #e67e22;
  transform: translateY(-3px);
}

.cta-btn.secondary {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

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

.disclaimer-section {
  background-color: #fff3cd;
  border-left: 5px solid var(--accent-color);
}

.disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title {
  font-size: 1.5rem;
  color: #856404;
  margin-bottom: 15px;
}

.disclaimer-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #856404;
}

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

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

.footer-heading {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

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

.registration-number {
  font-size: 0.9rem;
  opacity: 0.8;
  font-style: italic;
}

.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 {
  margin-bottom: 12px;
  opacity: 0.9;
}

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

.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: 25px;
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary-color);
}

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

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

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

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

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

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

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

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

.cookie-btn.reject:hover {
  background-color: #bdc3c7;
}

.cookie-link {
  font-size: 0.9rem;
  color: var(--secondary-color);
  text-decoration: underline;
}

.cookie-link:hover {
  color: var(--primary-color);
}

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

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

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

.story-section,
.values-section,
.team-section,
.approach-section,
.commitment-section {
  padding: 80px 0;
}

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

.story-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

.team-card h3 {
  padding: 20px 25px 10px;
  font-size: 1.5rem;
  color: var(--primary-color);
}

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

.team-bio {
  padding: 0 25px 25px;
  line-height: 1.7;
  color: var(--text-dark);
}

.approach-content {
  max-width: 900px;
  margin: 50px auto 0;
}

.approach-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  padding: 30px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.approach-step {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.approach-details h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.approach-details p {
  line-height: 1.7;
  color: var(--text-dark);
}

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

.commitment-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  padding: 50px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.commitment-box h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

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

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

.intro-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.post-image-container {
  position: relative;
  overflow: hidden;
}

.post-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-image {
  transform: scale(1.1);
}

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

.post-content {
  padding: 30px;
}

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

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

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

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

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

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

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

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

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

.newsletter-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.newsletter-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

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

.newsletter-submit {
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

.newsletter-privacy {
  font-size: 0.85rem;
  color: var(--text-light);
}

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

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

.blog-cta-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 35px;
}

.contact-intro-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.contact-intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.contact-intro-text {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

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

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

.form-heading {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

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

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

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

.form-input,
.form-select,
.form-textarea {
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

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

.form-textarea {
  resize: vertical;
}

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

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

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

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

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

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-card {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

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

.info-card-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.contact-info-card.highlight .info-card-title {
  color: var(--white);
}

.info-card-content {
  line-height: 1.7;
}

.info-card-content a {
  color: var(--secondary-color);
  font-weight: 600;
}

.info-card-content a:hover {
  text-decoration: underline;
}

.contact-info-card.highlight .info-card-content a {
  color: var(--white);
  text-decoration: underline;
}

.info-card-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 8px;
}

.contact-info-card.highlight .info-card-note {
  color: rgba(255,255,255,0.9);
}

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

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

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

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

.faq-item {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

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

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

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

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

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

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

.modal-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.modal-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

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

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

.post-article {
  padding-top: 0;
}

.post-hero-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.post-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  z-index: 0;
}

.post-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

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

.post-main-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.post-meta-info {
  display: flex;
  gap: 30px;
  font-size: 0.95rem;
  opacity: 0.95;
}

.post-container {
  padding: 80px 0;
}

.post-content-wrapper {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.post-main-content {
  font-size: 1.05rem;
  line-height: 1.8;
}

.post-lead {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 35px;
  padding-left: 20px;
  border-left: 4px solid var(--accent-color);
}

.post-main-content h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-top: 50px;
  margin-bottom: 20px;
}

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

.post-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-widget {
  background: var(--background-light);
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.widget-title {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.related-posts-list {
  list-style: none;
}

.related-posts-list li {
  margin-bottom: 15px;
}

.related-posts-list a {
  color: var(--text-dark);
  transition: var(--transition);
}

.related-posts-list a:hover {
  color: var(--secondary-color);
}

.widget-text {
  line-height: 1.7;
  margin-bottom: 20px;
}

.widget-cta-btn {
  display: block;
  text-align: center;
  padding: 12px 25px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 6px;
  font-weight: 600;
  transition: var(--transition);
}

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

.post-navigation {
  padding: 40px 0;
  background-color: var(--background-light);
}

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

.nav-link-back,
.nav-link-next {
  padding: 12px 30px;
  background-color: var(--white);
  border-radius: 6px;
  font-weight: 600;
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.nav-link-back:hover,
.nav-link-next:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .transition-content,
  .contact-layout,
  .post-content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .post-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .primary-nav .nav-list {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-title,
  .page-title {
    font-size: 2rem;
  }
  
  .hero-subtitle,
  .page-subtitle {
    font-size: 1.1rem;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .post-main-title {
    font-size: 2rem;
  }
  
  .continuum-grid,
  .thinking-grid,
  .posts-grid,
  .values-grid,
  .team-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-section,
  .post-hero-section {
    height: 400px;
  }
  
  .post-meta-info {
    flex-direction: column;
    gap: 10px;
  }
}