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

:root {
  --primary-color: #1a5490;
  --secondary-color: #2c7abf;
  --accent-color: #f0a500;
  --text-color: #333;
  --text-light: #666;
  --bg-color: #ffffff;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --danger-color: #dc3545;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  color: white;
  padding: 20px;
  z-index: 10000;
  display: none;
  animation: slideUp 0.4s ease-out;
}

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

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-text h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.cookie-text p {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
}

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

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

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

.decline-btn {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.decline-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Header & Navigation */
.main-header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 15px 0;
}

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

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}

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

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

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

.nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 0;
}

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

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

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
}

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

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  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.9), rgba(44, 122, 191, 0.85));
  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: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

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

.btn-primary:hover {
  background-color: #d89400;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

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

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

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

/* Stats Section */
.stats-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

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

.stat-item {
  text-align: center;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

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

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

/* Intro Section */
.intro-section {
  padding: 80px 0;
}

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

.section-header h2 {
  font-size: 38px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

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

.content-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.content-card:hover {
  transform: translateY(-5px);
}

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

.card-body {
  padding: 25px;
}

.card-body h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

/* White Paper Section */
.whitepaper-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

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

.whitepaper-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.whitepaper-info p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.95;
}

.whitepaper-features {
  list-style: none;
}

.whitepaper-features li {
  padding: 10px 0;
  font-size: 16px;
  opacity: 0.95;
}

.whitepaper-form {
  background-color: white;
  padding: 35px;
  border-radius: 10px;
  color: var(--text-color);
}

.whitepaper-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.download-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 15px;
}

.download-form button {
  width: 100%;
}

.form-disclaimer {
  margin-top: 15px;
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
}

/* Mistakes Section */
.mistakes-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.mistakes-section h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 50px;
}

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

.mistake-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.mistake-number {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.mistake-card h3 {
  margin-top: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 20px;
}

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

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

.cta-content {
  color: white;
}

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

.cta-content p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
}

/* Disclaimer Section */
.disclaimer-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.disclaimer-section h3 {
  text-align: center;
  font-size: 26px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.disclaimer-section p {
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-light);
  line-height: 1.8;
  text-align: justify;
}

/* Footer */
.main-footer {
  background-color: #1a1a1a;
  color: white;
  padding: 50px 0 20px;
}

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

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

.footer-column p {
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 15px;
}

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

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

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-contact li {
  color: #aaa;
  margin-bottom: 12px;
  line-height: 1.6;
}

.view-counter {
  margin-top: 20px;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
}

.view-counter strong {
  color: var(--accent-color);
  font-size: 18px;
}

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

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 80px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 44px;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 20px;
  opacity: 0.95;
}

/* About Page */
.about-story {
  padding: 80px 0;
}

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

.story-content h2 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

.story-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.team-section h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 50px;
}

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

.team-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

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

.team-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin: 20px 0 10px;
  padding: 0 20px;
}

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

.team-bio {
  padding: 0 20px 25px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Values Section */
.values-section {
  padding: 80px 0;
}

.values-section h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 50px;
}

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

.value-item {
  text-align: center;
  padding: 30px;
}

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

.value-item h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

/* Timeline Section */
.timeline-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.timeline-section h2 {
  text-align: center;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 50px;
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--primary-color);
}

.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  position: relative;
}

.timeline-year {
  flex-shrink: 0;
  width: 100px;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
}

.timeline-content {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  flex-grow: 1;
}

.timeline-content h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

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

/* Blog Page */
.blog-section {
  padding: 80px 0;
}

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

.blog-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

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

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.blog-date,
.blog-category {
  font-size: 13px;
  color: var(--text-light);
}

.blog-category {
  color: var(--accent-color);
  font-weight: 600;
}

.blog-content h2 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.4;
}

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

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.read-time {
  font-size: 13px;
  color: var(--text-light);
}

.read-more {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background-color: white;
  padding: 50px 40px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

.newsletter-form input {
  flex-grow: 1;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 15px;
}

/* Contact Page */
.contact-section {
  padding: 80px 0;
}

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

.contact-info h2 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

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

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

.contact-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

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

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

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

.contact-form .form-group {
  margin-bottom: 20px;
}

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

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

.contact-form textarea {
  resize: vertical;
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.map-section h2 {
  text-align: center;
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.map-placeholder {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  max-width: 500px;
  text-align: center;
  position: relative;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
}

.modal-close:hover {
  color: #000;
}

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

.modal-content h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

.modal-btn {
  margin-top: 10px;
}

/* Post Article */
.post-article {
  background-color: white;
}

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

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.post-date,
.post-category,
.post-reading {
  font-size: 14px;
  opacity: 0.95;
}

.post-category {
  font-weight: 600;
}

.post-header h1 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.post-excerpt {
  font-size: 20px;
  opacity: 0.95;
  line-height: 1.6;
}

.post-featured {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

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

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

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-size: 32px;
  color: var(--primary-color);
  margin: 40px 0 20px;
}

.content-wrapper p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 17px;
}

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

.btn-back,
.btn-next {
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    gap: 0;
  }

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

  .nav-link {
    padding: 15px 0;
    display: block;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .post-header h1 {
    font-size: 28px;
  }

  .post-excerpt {
    font-size: 16px;
  }

  .post-featured {
    height: 300px;
  }

  .content-wrapper h2 {
    font-size: 24px;
  }

  .timeline::before {
    left: 60px;
  }

  .timeline-year {
    width: 60px;
    font-size: 20px;
  }

  .post-footer-nav {
    flex-direction: column;
  }
}

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

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

  .whitepaper-form {
    padding: 25px;
  }

  .mistakes-section h2 {
    font-size: 26px;
  }

  .cta-content h2 {
    font-size: 28px;
  }
}