:root {
  --primary-color: #1a5490;
  --secondary-color: #2980b9;
  --accent-color: #e67e22;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --text-color: #333;
  --border-color: #ddd;
  --success-color: #27ae60;
  --danger-color: #e74c3c;
  --warning-color: #f39c12;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}

#progressBar {
  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;
}

.main-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

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

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

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

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

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

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

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

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

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

.lang-toggle {
  background: var(--primary-color);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.lang-toggle:hover {
  background: var(--secondary-color);
}

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

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,84,144,0.9), rgba(41,128,185,0.8));
  z-index: -1;
}

.container-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  color: #fff;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}

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

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn-primary,
.btn-secondary,
.btn-cta {
  padding: 1rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  display: inline-block;
}

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

.btn-primary:hover {
  background: #d35400;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

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

.btn-cta {
  background: var(--accent-color);
  color: #fff;
}

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

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

.features-section,
.risk-section,
.cta-section {
  padding: 5rem 0;
}

.container-features,
.container-risk,
.container-cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

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

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

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

.transition-section {
  padding: 5rem 0;
  background: var(--light-color);
}

.container-transition {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.transition-content h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.transition-list {
  list-style: none;
  margin-top: 1.5rem;
}

.transition-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

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

.transition-img {
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.risk-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.risk-item {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  border-left: 5px solid var(--primary-color);
}

.risk-badge {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.thinking-section {
  padding: 5rem 0;
}

.container-thinking {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.thinking-img {
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.thinking-content h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.stat-box {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-color);
  border-radius: 10px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

.stat-label {
  color: var(--text-color);
  margin-top: 0.5rem;
}

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

.container-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.container-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.responsibility-statement {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  font-size: 0.9rem;
}

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

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

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

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

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

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

.footer-reg {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
  padding: 2rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

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

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

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.btn-accept-all,
.btn-customize,
.btn-decline {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.btn-accept-all {
  background: var(--success-color);
  color: #fff;
}

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

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

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

.btn-decline {
  background: var(--border-color);
  color: var(--text-color);
}

.btn-decline:hover {
  background: #bdc3c7;
}

.cookie-policy-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  text-decoration: underline;
}

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

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

.cookie-settings-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-option {
  margin: 1.5rem 0;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
}

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

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

.btn-save-settings,
.btn-close-settings {
  flex: 1;
  padding: 0.8rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.btn-save-settings {
  background: var(--success-color);
  color: #fff;
}

.btn-save-settings:hover {
  background: #229954;
}

.btn-close-settings {
  background: var(--border-color);
  color: var(--text-color);
}

.btn-close-settings:hover {
  background: #bdc3c7;
}

.blog-hero,
.about-hero,
.contact-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  padding: 5rem 2rem 3rem;
  text-align: center;
}

.blog-hero-content h1,
.about-hero-content h1,
.contact-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.blog-posts-section {
  padding: 5rem 0;
}

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

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

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.blog-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

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

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

.blog-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-color);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.blog-card-content {
  padding: 2rem;
}

.blog-card-content h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.blog-card-content h2 a:hover {
  color: var(--secondary-color);
}

.blog-meta {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

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

.about-story {
  padding: 5rem 0;
}

.container-about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-content h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.story-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-office-img {
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.team-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

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

.team-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

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

.team-card h3 {
  color: var(--primary-color);
  margin: 1.5rem 0 0.5rem;
  font-size: 1.5rem;
}

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

.team-bio {
  padding: 0 1.5rem 1.5rem;
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

.values-section {
  padding: 5rem 0;
}

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

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

.value-card {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
}

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

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

.cta-about {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  text-align: center;
}

.container-cta-about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-cta-about h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-main {
  padding: 5rem 0;
}

.container-contact {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

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

.info-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

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

.info-card a {
  color: var(--accent-color);
  transition: var(--transition);
}

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

.contact-form-wrapper {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.form-intro {
  color: #666;
  margin-bottom: 2rem;
}

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

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 5px rgba(26,84,144,0.3);
}

.form-group-checkbox {
  display: flex;
  align-items: start;
  gap: 0.5rem;
}

.form-group-checkbox input {
  margin-top: 0.3rem;
}

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

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

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

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

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

.map-wrapper iframe {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

.modal-content {
  background: #fff;
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  width: 90%;
}

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

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

.btn-close-modal {
  background: var(--primary-color);
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 1.5rem;
  font-weight: 600;
  transition: var(--transition);
}

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

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

.post-header {
  background: var(--light-color);
  padding: 3rem 0;
}

.container-post-header {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.post-breadcrumb {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

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

.post-breadcrumb a:hover {
  text-decoration: underline;
}

.post-header h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.post-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: #666;
  font-size: 0.9rem;
}

.post-featured-image {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 2rem;
}

.post-featured-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.container-post {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
}

.post-content {
  line-height: 1.8;
}

.lead-paragraph {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

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

.post-content p {
  margin-bottom: 1.5rem;
}

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

.post-content li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.post-content strong {
  color: var(--primary-color);
  font-weight: 600;
}

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

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

.post-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-widget {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}

.sidebar-widget h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

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

.related-posts li,
.categories-list li {
  margin-bottom: 0.8rem;
}

.related-posts a,
.categories-list a {
  color: var(--text-color);
  transition: var(--transition);
  display: block;
  padding: 0.5rem;
  border-radius: 5px;
}

.related-posts a:hover,
.categories-list a:hover {
  color: var(--primary-color);
  background: var(--light-color);
}

@media (max-width: 968px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .container-transition,
  .container-thinking,
  .container-about,
  .container-contact,
  .container-post {
    grid-template-columns: 1fr;
  }
  
  .thinking-stats {
    grid-template-columns: 1fr;
  }
  
  .post-sidebar {
    position: static;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}