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

:root {
  --primary-color: #1a5f7a;
  --secondary-color: #2c8aa8;
  --accent-color: #57a773;
  --dark-color: #0f3443;
  --light-color: #f4f9fc;
  --text-color: #2c3e50;
  --text-light: #6c757d;
  --border-color: #e0e6ed;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #fff;
}

.main-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo {
  border-radius: 50%;
  border: 2px solid white;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.primary-nav {
  flex: 1;
  margin-left: 3rem;
}

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

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.nav-link:hover, .nav-link.active {
  background: rgba(255,255,255,0.2);
}

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

.hamburger-line {
  width: 30px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: var(--transition);
}

.hero-banner, .page-hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,95,122,0.8), rgba(44,138,168,0.6));
  z-index: 1;
}

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

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.hero-title, .page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle, .page-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

.cta-button-primary:hover {
  background: #4a9160;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-button-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: white;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--primary-color);
}

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

.page-counter {
  background: var(--light-color);
  padding: 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border-color);
}

.counter-icon {
  font-size: 1.5rem;
}

.counter-value {
  font-weight: 700;
  color: var(--primary-color);
}

.main-content {
  padding: 4rem 0;
}

.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.content-wrapper.narrow {
  max-width: 800px;
}

.section-heading {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.intro-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.lead-paragraph {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.intro-visual img {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.horizons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.horizon-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-top: 5px solid;
}

.horizon-card.short-term {
  border-top-color: #f39c12;
}

.horizon-card.medium-term {
  border-top-color: #3498db;
}

.horizon-card.long-term {
  border-top-color: #27ae60;
}

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

.horizon-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.horizon-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.horizon-period {
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 1rem;
}

.horizon-features {
  list-style: none;
  margin: 1.5rem 0;
}

.horizon-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.horizon-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

.transition-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.transition-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.emphasis-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.principle-item {
  background: var(--light-color);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.principle-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.risk-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

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

.risk-card img {
  width: 100%;
  border-radius: 10px;
  margin: 1rem 0;
}

.risk-factors {
  list-style: none;
  margin-top: 1rem;
}

.risk-factors li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.risk-factors li:before {
  content: "⚠";
  position: absolute;
  left: 0;
}

.thinking-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.pillar-card {
  background: var(--light-color);
  padding: 2rem;
  border-radius: 15px;
  position: relative;
  padding-top: 3rem;
}

.pillar-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(26,95,122,0.2);
}

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

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

.cta-container {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.cta-heading {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  text-align: center;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.commitment-item {
  text-align: center;
}

.commitment-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.commitment-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.interesting-facts {
  background: var(--light-color);
  padding: 4rem 0;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.fact-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.fact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

.main-footer {
  background: var(--dark-color);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-heading {
  margin-bottom: 1rem;
  color: var(--accent-color);
}

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

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

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

.footer-links a:hover, .footer-contact a:hover {
  color: white;
}

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

.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  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: white;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  padding: 2rem;
  z-index: 9999;
  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: 2rem;
}

.cookie-text h4 {
  margin-bottom: 0.5rem;
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

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

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

.cookie-btn.accept-all:hover {
  background: #4a9160;
}

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

.cookie-btn.decline {
  background: #e0e6ed;
  color: var(--text-color);
}

.cookie-settings {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  width: 90%;
  z-index: 10000;
  display: none;
}

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

.cookie-option {
  margin: 1.5rem 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  cursor: pointer;
}

.settings-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

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

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

.blog-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

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

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

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.featured-badge {
  background: #e74c3c;
}

.card-content {
  padding: 2rem;
}

.card-category {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.card-title {
  margin: 1rem 0;
  font-size: 1.5rem;
}

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

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

.card-excerpt {
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

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

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

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.lead-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
  background: var(--light-color);
  border-radius: 15px;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.member-photo {
  width: 100%;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.member-role {
  color: var(--primary-color);
  font-weight: 600;
  margin: 0.5rem 0;
}

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

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.reason-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

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

.contact-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  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);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
}

.checkbox-group input {
  width: auto;
  margin-right: 0.5rem;
}

.submit-btn {
  padding: 1rem 2rem;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  background: #4a9160;
}

.contact-info-card {
  background: var(--light-color);
  padding: 2rem;
  border-radius: 15px;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  font-size: 1.5rem;
}

.info-details h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.quick-questions {
  margin-top: 2rem;
}

.faq-item {
  margin: 1rem 0;
}

.faq-item strong {
  color: var(--primary-color);
}

.map-section {
  margin-top: 3rem;
}

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

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

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

.modal-icon {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

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

.post-header {
  position: relative;
  margin-bottom: 3rem;
}

.post-header-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

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

.post-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.post-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  color: var(--text-light);
}

.post-featured-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 15px;
  margin-top: 2rem;
}

.post-content {
  padding: 3rem 0;
}

.post-content h2 {
  color: var(--primary-color);
  margin: 2rem 0 1rem;
  font-size: 2rem;
}

.post-content h3 {
  color: var(--secondary-color);
  margin: 1.5rem 0 1rem;
  font-size: 1.5rem;
}

.post-content h4 {
  color: var(--text-color);
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
}

.post-content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.post-content ul, .post-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.post-content li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.post-image {
  width: 100%;
  border-radius: 10px;
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}

.post-cta {
  background: var(--light-color);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin: 3rem 0;
}

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

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}

.nav-btn {
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: var(--transition);
}

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

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

  .primary-nav {
    display: none;
  }

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

  .hero-subtitle, .page-subtitle {
    font-size: 1rem;
  }

  .horizons-grid, .risk-grid, .facts-grid, .values-grid, .team-grid, .reasons-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid, .transition-content, .story-grid, .thinking-pillars, .commitment-grid, .contact-layout {
    grid-template-columns: 1fr;
  }

  .blog-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

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

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

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

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