/* Основные цвета */
:root {
  --primary-color: #0073e6;
  --primary-dark: #0055a8;
  --secondary-color: #00a8cc;
  --accent-color: #ffa500;
  --text-color: #333333;
  --text-light: #666666;
  --bg-color: #ffffff;
  --bg-light: #f5f8fa;
  --bg-dark: #182a3d;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --error-color: #dc3545;
  --warning-color: #ffc107;
  --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 6px;
  --max-width: 1200px;
  --header-height: 80px;
}

/* Базовые стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', 'Segoe UI', 'Arial', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--bg-color);
  overflow-x: hidden;
}

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

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

ul, ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

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

button, .btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  text-align: center;
}

button:hover, .btn:hover {
  background-color: var(--primary-dark);
  color: white;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 60px 0;
}

/* Progress Bar */
.progress-container {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 5px;
  background-color: transparent;
}

.progress-bar {
  height: 5px;
  background-color: var(--accent-color);
  width: 0%;
}

/* Header и навигация */
header {
  background-color: white;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

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

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
}

nav ul li a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

nav ul li a:hover:after, nav ul li a.active:after {
  width: 100%;
}

nav ul li a.active {
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero секция */
.hero {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--bg-dark);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.hero-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

/* Future Quote */
.future-quote {
  background-color: var(--bg-dark);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.future-quote h2 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.future-quote blockquote {
  font-size: 1.3rem;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  padding: 0 40px;
}

.future-quote blockquote:before,
.future-quote blockquote:after {
  content: '"';
  font-size: 4rem;
  position: absolute;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
}

.future-quote blockquote:before {
  top: -20px;
  left: 0;
}

.future-quote blockquote:after {
  bottom: -50px;
  right: 0;
  transform: rotate(180deg);
}

.future-quote cite {
  display: block;
  margin-top: 20px;
  font-size: 1.1rem;
  color: var(--accent-color);
  font-style: normal;
}

/* Featured Posts */
.featured-posts {
  background-color: white;
}

.featured-posts h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.post-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.post-image {
  height: 200px;
  overflow: hidden;
}

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

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

.post-content {
  padding: 20px;
}

.post-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.post-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.read-more {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
}

.read-more:after {
  content: "→";
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover:after {
  margin-left: 10px;
}

.view-all {
  text-align: center;
}

/* Features */
.why-us {
  background-color: var(--bg-light);
}

.why-us h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

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

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

.feature-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background-color: rgba(0, 115, 230, 0.1);
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}

.feature-icon svg {
  color: var(--primary-color);
  width: 32px;
  height: 32px;
}

.feature h3 {
  margin-bottom: 15px;
}

.feature p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* Blog List */
.blog-header {
  background-color: var(--bg-dark);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.blog-header h1 {
  color: white;
  margin-bottom: 20px;
}

.blog-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.blog-posts {
  padding: 60px 0;
}

.posts-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.post-item {
  display: flex;
  gap: 30px;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-item .post-image {
  flex: 0 0 35%;
  height: 300px;
}

.post-item .post-content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

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

.post-date {
  margin-right: 15px;
}

.post-category {
  background-color: rgba(0, 115, 230, 0.1);
  color: var(--primary-color);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.post-item .post-content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.post-item .post-content p {
  margin-bottom: auto;
}

.post-item .btn {
  align-self: flex-start;
  margin-top: 20px;
}

/* About Page */
.about-header {
  background-color: var(--bg-dark);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.about-header h1 {
  color: white;
  margin-bottom: 20px;
}

.about-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-mission {
  padding: 60px 0;
}

.about-mission .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.mission-content {
  flex: 1;
}

.mission-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

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

.team h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

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

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

.team-member img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-member h3, .team-member p {
  padding: 0 20px;
}

.team-member h3 {
  margin-top: 20px;
  margin-bottom: 5px;
}

.team-member p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.team-member .social-links {
  display: flex;
  gap: 10px;
  padding: 0 20px 20px;
}

.team-member .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(0, 115, 230, 0.1);
  color: var(--primary-color);
  transition: var(--transition);
}

.team-member .social-links a:hover {
  background-color: var(--primary-color);
  color: white;
}

.values {
  padding: 60px 0;
}

.values h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.value-card {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}

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

.value-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background-color: white;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-icon svg {
  color: var(--primary-color);
}

.value-card h3 {
  margin-bottom: 15px;
}

.value-card p {
  margin-bottom: 0;
}

/* Contact Page */
.contact-header {
  background-color: var(--bg-dark);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.contact-header h1 {
  color: white;
  margin-bottom: 20px;
}

.contact-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  padding: 60px 0;
}

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

.contact-details h2 {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-icon {
  flex: 0 0 50px;
  height: 50px;
  background-color: rgba(0, 115, 230, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.contact-icon svg {
  color: var(--primary-color);
}

.contact-text h3 {
  margin-bottom: 5px;
}

.contact-social {
  margin-top: 40px;
}

.contact-social h3 {
  margin-bottom: 20px;
}

.contact-social .social-links {
  display: flex;
  gap: 15px;
}

.contact-social .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(0, 115, 230, 0.1);
  color: var(--primary-color);
  transition: var(--transition);
}

.contact-social .social-links a:hover {
  background-color: var(--primary-color);
  color: white;
}

.contact-form-container h2 {
  margin-bottom: 30px;
}

.contact-form {
  background-color: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 115, 230, 0.2);
}

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

.checkbox-group input {
  width: auto;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

.faq {
  background-color: var(--bg-light);
  padding: 60px 0;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.faq-item {
  background-color: white;
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
  transition: var(--transition);
}

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-question h3 {
  color: var(--primary-color);
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
}

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

.modal.active {
  display: flex;
}

.modal-content {
  background-color: white;
  border-radius: var(--border-radius);
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: modalAnimation 0.3s ease;
}

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

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

.modal-body {
  padding: 40px;
  text-align: center;
}

.success-icon {
  color: var(--success-color);
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.modal-body h2 {
  margin-bottom: 15px;
}

.modal-body p {
  margin-bottom: 25px;
}

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

/* Blog Post Page */
.blog-post {
  padding: 60px 0;
}

.post-header {
  margin-bottom: 30px;
}

.post-header h1 {
  font-size: 2.8rem;
  margin: 15px 0;
}

.post-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.post-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.post-featured-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 40px;
}

.post-featured-image img {
  width: 100%;
}

.post-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

.post-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 2rem;
}

.post-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.post-content ul, .post-content ol {
  margin-bottom: 25px;
}

.post-content li {
  margin-bottom: 10px;
}

.post-content strong {
  font-weight: 700;
}

.post-image-container {
  margin: 30px 0;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.image-caption {
  padding: 15px;
  text-align: center;
  background-color: var(--bg-light);
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 0;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.pricing-table th, .pricing-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.pricing-table th {
  background-color: var(--primary-color);
  color: white;
}

.pricing-table tr:nth-child(even) {
  background-color: var(--bg-light);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.post-tags {
  margin: 40px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.post-tags span {
  font-weight: 700;
  color: var(--text-color);
}

.post-tags a {
  display: inline-block;
  padding: 5px 12px;
  background-color: var(--bg-light);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: var(--transition);
}

.post-tags a:hover {
  background-color: var(--primary-color);
  color: white;
}

.post-share {
  margin: 40px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.post-share span {
  font-weight: 700;
  color: var(--text-color);
}

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-light);
  color: var(--text-color);
  transition: var(--transition);
}

.post-share a:hover {
  background-color: var(--primary-color);
  color: white;
}

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

.prev-post, .next-post {
  max-width: 45%;
}

.prev-post a, .next-post a {
  display: block;
  color: var(--text-color);
}

.prev-post span, .next-post span {
  display: block;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.prev-post p, .next-post p {
  font-weight: 600;
  margin-bottom: 0;
  transition: var(--transition);
}

.prev-post a:hover p, .next-post a:hover p {
  color: var(--primary-color);
}

.next-post {
  text-align: right;
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: white;
  padding: 60px 0 20px;
}

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

.footer-logo img {
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-links h3, .footer-legal h3, .footer-contact h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-links ul, .footer-legal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

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

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

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
  margin-right: 10px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-bottom .social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-bottom .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transition: var(--transition);
}

.footer-bottom .social-links a:hover {
  background-color: var(--primary-color);
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.7;
  text-align: center;
  margin-bottom: 0;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-dark);
  color: white;
  padding: 15px;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 15px;
}

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

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

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

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

.cookie-policy {
  font-size: 0.9rem;
  opacity: 0.8;
}

.cookie-policy a {
  color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content, .hero-image {
    flex: none;
    width: 100%;
  }
  
  .about-mission .container {
    flex-direction: column;
  }
  
  .mission-content, .mission-image {
    flex: none;
    width: 100%;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .post-item {
    flex-direction: column;
  }
  
  .post-item .post-image {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  header {
    height: auto;
    padding: 20px 0;
  }
  
  nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: white;
    padding: 20px;
    box-shadow: var(--box-shadow);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  
  nav.active {
    transform: translateY(0);
  }
  
  nav ul {
    flex-direction: column;
    gap: 15px;
  }
  
  nav ul li {
    margin-left: 0;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .future-quote blockquote {
    padding: 0 20px;
    font-size: 1.1rem;
  }
  
  .posts-grid {
    grid-template-columns: 1fr;
  }
  
  .features, .team-grid, .values-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 20px;
  }
  
  .prev-post, .next-post {
    max-width: 100%;
  }
  
  .next-post {
    text-align: left;
  }
}

@media (max-width: 576px) {
  section {
    padding: 40px 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .future-quote blockquote {
    font-size: 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}
