/* Base Styles */
:root {
  --primary-color: #2e86de;
  --secondary-color: #5f27cd;
  --accent-color: #ff6b6b;
  --dark-color: #222f3e;
  --light-color: #f5f6fa;
  --text-color: #333;
  --text-light: #666;
  --text-lighter: #999;
  --success-color: #10ac84;
  --warning-color: #ff9f43;
  --error-color: #ee5253;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-xxl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  
  --transition-speed: 0.3s;
}

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

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-color);
}

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

h1 {
  font-size: var(--font-size-4xl);
}

h2 {
  font-size: var(--font-size-3xl);
}

h3 {
  font-size: var(--font-size-xxl);
}

h4 {
  font-size: var(--font-size-xl);
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

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

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

button, .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--border-radius);
  transition: background-color var(--transition-speed), color var(--transition-speed), transform var(--transition-speed);
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

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

.btn-primary:hover {
  background-color: #1a73e8;
  color: white;
}

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

.btn-secondary:hover {
  background-color: #4834b0;
  color: white;
}

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

.btn-accent:hover {
  background-color: #ff5252;
  color: white;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--gray-400);
  color: var(--text-color);
}

.btn-outline:hover {
  background-color: var(--gray-200);
  color: var(--dark-color);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--font-size-sm);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col {
  flex: 1 0 0%;
  padding-right: 15px;
  padding-left: 15px;
}

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

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

.logo img {
  height: 50px;
  width: auto;
  margin-right: 1rem;
  border-radius: var(--border-radius);
}

.logo h1 {
  font-size: var(--font-size-lg);
  margin-bottom: 0;
  color: var(--primary-color);
}

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

nav li {
  margin-left: 2rem;
}

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

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

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

nav a.active:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 5px;
}

/* Hero Section */
.hero {
  padding: 5rem 0;
  background-color: var(--gray-100);
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  flex: 0 0 50%;
  max-width: 50%;
}

.hero-image {
  flex: 0 0 45%;
  max-width: 45%;
}

.hero h2 {
  font-size: var(--font-size-4xl);
  margin-bottom: 1.5rem;
  color: var(--dark-color);
}

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

/* Page Headers */
.page-header {
  padding: 3rem 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  color: white;
  font-size: var(--font-size-4xl);
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: var(--font-size-lg);
  margin-bottom: 0;
  opacity: 0.9;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: white;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title:after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

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

.feature-card {
  padding: 2rem;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  text-align: center;
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

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

/* Blog Posts */
.latest-posts {
  padding: 5rem 0;
  background-color: var(--gray-100);
}

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

.post-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-speed);
}

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

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

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed);
}

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

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  font-size: var(--font-size-lg);
  margin-bottom: 0.75rem;
}

.post-content h3 a {
  color: var(--dark-color);
  transition: color var(--transition-speed);
}

.post-content h3 a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.post-excerpt {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

.read-more {
  display: inline-block;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
}

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

.read-more:hover:after {
  transform: translateX(5px);
}

.post-meta {
  font-size: var(--font-size-sm);
  color: var(--text-lighter);
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.more-posts {
  text-align: center;
  margin-top: 3rem;
}

/* Blog Section */
.blog-section {
  padding: 3rem 0 5rem;
}

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

/* CTA Sections */
.cta {
  padding: 4rem 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 2rem;
  font-size: var(--font-size-lg);
  opacity: 0.9;
}

.subscribe-form {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.subscribe-form input {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border: none;
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  font-size: var(--font-size-base);
}

.subscribe-form button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.review-cta {
  padding: 3rem 0;
  background-color: var(--gray-100);
}

.review-box {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--box-shadow);
}

.review-box h2 {
  margin-bottom: 1rem;
}

.review-box p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-about .footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
}

.footer-about p {
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.registration-number {
  font-size: var(--font-size-sm);
  opacity: 0.7;
}

.footer-nav h4, .footer-contact h4, .footer-social h4 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-nav h4:after, .footer-contact h4:after, .footer-social h4:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-nav a, .footer-contact a {
  color: white;
  opacity: 0.8;
  transition: opacity var(--transition-speed);
}

.footer-nav a:hover, .footer-contact a:hover {
  opacity: 1;
  text-decoration: none;
}

.footer-contact address {
  font-style: normal;
  opacity: 0.8;
}

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

.social-icons {
  display: flex;
  gap: 1rem;
}

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

.social-icons a:hover {
  background-color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--font-size-sm);
}

.footer-bottom p {
  margin-bottom: 0;
  opacity: 0.7;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-links a {
  color: white;
  opacity: 0.7;
  transition: opacity var(--transition-speed);
}

.legal-links a:hover {
  opacity: 1;
  text-decoration: none;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  z-index: 1000;
  display: none;
}

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

.cookie-content p {
  margin-bottom: 0;
  margin-right: 1rem;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}

/* About Page */
.about-intro {
  padding: 3rem 0 5rem;
}

.about-intro .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.about-content {
  flex: 0 0 60%;
}

.about-image {
  flex: 0 0 35%;
}

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

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

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

.team-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
  padding-bottom: 2rem;
  transition: transform var(--transition-speed);
}

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

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

.team-card h3 {
  margin: 1.5rem 0 0.25rem;
  font-size: var(--font-size-xl);
}

.team-card p {
  margin: 0.25rem 0 1rem;
  padding: 0 1.5rem;
}

.team-card p:first-of-type {
  color: var(--primary-color);
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--gray-200);
  color: var(--text-color);
  transition: all var(--transition-speed);
}

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

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

.value-card {
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  background-color: white;
  text-align: center;
  transition: transform var(--transition-speed);
}

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

.value-icon {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  margin-bottom: 1rem;
  font-size: var(--font-size-xl);
}

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

/* Contact Page */
.contact-section {
  padding: 3rem 0 5rem;
}

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

.contact-info, .contact-form {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2.5rem;
}

.info-item {
  display: flex;
  margin-bottom: 2rem;
}

.info-icon {
  flex: 0 0 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 1.5rem;
}

.info-content h3 {
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
}

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

.info-content a {
  color: var(--text-light);
  transition: color var(--transition-speed);
}

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

.social-block {
  margin-top: 2.5rem;
}

.social-block h3 {
  font-size: var(--font-size-lg);
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

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

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

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

.contact-form button {
  margin-top: 1rem;
}

.feedback-section {
  padding: 5rem 0;
  background-color: var(--gray-100);
}

.section-description {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.rating {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.rating input {
  display: none;
}

.rating label {
  cursor: pointer;
  background-color: var(--gray-300);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed);
}

.rating input:checked + label {
  background-color: var(--primary-color);
}

.rating label:hover {
  background-color: var(--secondary-color);
}

.map-section {
  padding: 3rem 0 5rem;
}

.map-container {
  height: 400px;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.modal-content {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  max-width: 500px;
  text-align: center;
  position: relative;
  animation: modalFadeIn 0.3s;
}

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

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-lighter);
  transition: color var(--transition-speed);
}

.modal-close:hover {
  color: var(--error-color);
}

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

.modal p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

/* Blog Post Page */
.post-article {
  padding: 3rem 0 5rem;
}

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

.post-header h1 {
  font-size: calc(var(--font-size-4xl) * 1.2);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.post-featured-image {
  border-radius: var(--border-radius);
  margin: 2rem 0;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-lighter);
}

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

.post-content h2 {
  font-size: var(--font-size-3xl);
  margin: 3rem 0 1.5rem;
  color: var(--primary-color);
}

.post-content h3 {
  font-size: var(--font-size-xxl);
  margin: 2.5rem 0 1.25rem;
  color: var(--dark-color);
}

.post-content ul, .post-content ol {
  margin-bottom: 2rem;
}

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

.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin: 3rem 0 2rem;
}

.post-tags span {
  font-weight: 600;
  margin-right: 0.5rem;
}

.post-tags a {
  display: inline-block;
  background-color: var(--gray-100);
  color: var(--text-light);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: var(--font-size-sm);
  transition: all var(--transition-speed);
}

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

.post-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.post-share span {
  font-weight: 600;
}

.post-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--gray-200);
  color: var(--text-color);
  transition: all var(--transition-speed);
}

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

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

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

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

.post-nav-prev a, .post-nav-next a {
  font-weight: 600;
  color: var(--text-color);
  transition: color var(--transition-speed);
}

.post-nav-prev a:hover, .post-nav-next a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.related-posts {
  padding: 3rem 0 5rem;
  background-color: var(--gray-100);
}

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

/* Responsive Styles */
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  
  .hero .container {
    flex-direction: column;
  }
  
  .hero-content, .hero-image {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .hero-content {
    margin-bottom: 3rem;
  }
  
  .feature-grid, .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
  }
}

@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  
  header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  nav ul {
    justify-content: center;
  }
  
  nav li {
    margin: 0 1rem;
  }
  
  .post-grid, .blog-grid, .related-posts-grid, .team-grid {
    grid-template-columns: 1fr;
  }
  
  .about-intro .container {
    flex-direction: column;
  }
  
  .about-content, .about-image {
    flex: 0 0 100%;
  }
  
  .about-image {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    order: 2;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content p {
    margin-bottom: 1rem;
  }
  
  .post-featured-image {
    height: 250px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .container {
    max-width: 100%;
    padding: 0 15px;
  }
  
  h1 {
    font-size: var(--font-size-3xl);
  }
  
  h2 {
    font-size: var(--font-size-xxl);
  }
  
  .hero h2 {
    font-size: var(--font-size-3xl);
  }
  
  .feature-grid, .values-grid {
    grid-template-columns: 1fr;
  }
  
  .subscribe-form {
    flex-direction: column;
    width: 100%;
  }
  
  .subscribe-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .subscribe-form button {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .rating {
    flex-wrap: wrap;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .post-header h1 {
    font-size: var(--font-size-3xl);
  }
  
  .post-content h2 {
    font-size: var(--font-size-xxl);
  }
  
  .post-content h3 {
    font-size: var(--font-size-xl);
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .post-nav-prev, .post-nav-next {
    max-width: 100%;
  }
  
  .post-nav-next {
    text-align: left;
  }
}
