/* Estilos generales */
:root {
  --primary-color: #e67e22;
  --secondary-color: #f39c12;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --success-color: #27ae60;
  --error-color: #e74c3c;
  --body-color: #f8f9fa;
  --text-color: #333;
  --border-color: #ddd;
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Playfair Display", serif;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

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

/* Scrollbar personalizado */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

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

/* Tipografía */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  margin-bottom: 1rem;
  color: var(--dark-color);
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.2rem;
}

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

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

ul {
  list-style: none;
}

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

/* Botones */
.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

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

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

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

.btn-block {
  display: block;
  width: 100%;
}

.btn-cookie {
  padding: 8px 15px;
  font-size: 0.85rem;
}

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

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

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

.navbar {
  display: flex;
}

.navbar li {
  margin-left: 30px;
}

.navbar a {
  color: var(--dark-color);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 5px;
}

.navbar a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar a:hover:after,
.navbar a.active:after {
  width: 100%;
}

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

.navbar a i {
  margin-right: 5px;
}

/* Hero Section */
.hero {
  background-color: var(--primary-color);
  color: white;
  padding: 80px 0;
  text-align: center;
  background-image: linear-gradient(
      to right,
      rgba(230, 126, 34, 0.9),
      rgba(243, 156, 18, 0.9)
    ),
    url("/images/4.jpg");
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  color: white;
  padding: 50px 0;
  text-align: center;
  background-image: linear-gradient(
      to right,
      rgba(230, 126, 34, 0.9),
      rgba(243, 156, 18, 0.9)
    ),
    url("/images/4.jpg");
  background-size: cover;
  background-position: center;
}

.page-header h1 {
  color: white;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.1rem;
}

/* Featured Posts Section */
.featured-posts {
  padding: 80px 0;
}

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

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

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

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

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

.post-content {
  padding: 20px;
}

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

.post-content p {
  color: #666;
  margin-bottom: 15px;
}

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

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

.view-all {
  text-align: center;
  margin-top: 40px;
}

/* Blog Content */
.blog-content {
  padding: 60px 0;
}

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

.post-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.post-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
}

.post-image {
  overflow: hidden;
}

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

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

.post-details {
  padding: 25px;
}

.post-date {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: block;
}

.post-details h2 {
  margin-bottom: 15px;
}

.post-details h2 a {
  color: var(--dark-color);
  transition: var(--transition);
}

.post-details h2 a:hover {
  color: var(--primary-color);
}

.post-details p {
  margin-bottom: 20px;
}

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

.post-header {
  margin-bottom: 40px;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.post-header h1 {
  padding: 30px 30px 0;
  font-size: 2.2rem;
}

.post-meta {
  padding: 0 30px 20px;
  border-bottom: 1px solid var(--border-color);
  color: #666;
  font-size: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.post-meta i {
  margin-right: 5px;
  color: var(--primary-color);
}

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

.post-content {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.post-intro {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
  border-left: 4px solid var(--primary-color);
  padding-left: 20px;
}

.post-content h2 {
  margin-top: 40px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-color);
}

.post-content h3 {
  margin-top: 30px;
  color: var(--dark-color);
}

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

.post-content ul li,
.post-content ol li {
  margin-bottom: 10px;
  position: relative;
}

.post-content ul li:before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

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

.image-caption {
  background-color: #f8f9fa;
  padding: 12px;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-bottom: 0;
}

blockquote {
  border-left: 5px solid var(--primary-color);
  padding: 20px;
  margin: 30px 0;
  background-color: #f8f9fa;
  font-style: italic;
  color: #555;
}

.post-tips {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 25px;
  margin: 30px 0;
  border-left: 5px solid var(--secondary-color);
}

.post-tips h3 {
  margin-top: 0;
  color: var(--dark-color);
}

.post-tips ul {
  margin-bottom: 0;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.post-tags a {
  display: inline-block;
  background-color: #f1f1f1;
  color: #666;
  padding: 5px 10px;
  border-radius: 4px;
  margin-right: 5px;
  margin-bottom: 5px;
  font-size: 0.85rem;
  transition: var(--transition);
}

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

.post-tags span,
.post-share span {
  color: #888;
  margin-right: 10px;
}

.post-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-left: 5px;
  transition: var(--transition);
}

.share-facebook {
  background-color: #3b5999;
  color: white;
}

.share-twitter {
  background-color: #55acee;
  color: white;
}

.share-pinterest {
  background-color: #bd081c;
  color: white;
}

.share-email {
  background-color: #7d7d7d;
  color: white;
}

.post-share a:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}

.nav-previous,
.nav-next {
  max-width: 48%;
}

.nav-previous span,
.nav-next span {
  display: block;
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.nav-previous a,
.nav-next a {
  font-weight: 600;
  color: var(--dark-color);
  transition: var(--transition);
}

.nav-previous a:hover,
.nav-next a:hover {
  color: var(--primary-color);
}

.related-posts {
  margin-top: 60px;
}

.related-posts h3 {
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.related-posts h3:after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 15px auto 0;
}

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

.related-post {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.related-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
}

.related-post img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-post h4 {
  padding: 15px;
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* Contact Content */
.contact-content {
  padding: 60px 0;
}

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

.contact-info {
  background-color: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.info-card {
  display: flex;
  margin-bottom: 30px;
}

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

.info-icon i {
  font-size: 1.2rem;
}

.info-details h3 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.social-contact h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f1f1f1;
  color: var(--dark-color);
  transition: var(--transition);
}

.social-icons a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

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

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark-color);
  font-weight: 500;
}

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

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

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

.checkbox-group input {
  width: auto;
  margin-right: 10px;
}

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

.map-section {
  padding-bottom: 60px;
}

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

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

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overflow: auto;
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 30px;
  border-radius: 8px;
  width: 80%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

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

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

.modal-body {
  text-align: center;
}

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

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

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

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

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 25px;
}

.about-image img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.values-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.values-section 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: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

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

.value-icon {
  background-color: var(--primary-color);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  font-size: 1.8rem;
}

.team-section {
  padding: 60px 0;
}

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

.team-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #666;
}

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

.team-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

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

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

.team-card h3 {
  margin: 15px 0 5px;
  font-size: 1.3rem;
}

.team-card p {
  color: #666;
  padding: 0 15px 15px;
  margin-bottom: 10px;
}

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

.testimonials-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

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

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

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

.testimonial-content {
  position: relative;
  padding: 20px 0;
}

.testimonial-content:before {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -15px;
}

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

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

.testimonial-author h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.testimonial-author span {
  color: #666;
  font-size: 0.9rem;
}

.partners-section {
  padding: 60px 0;
}

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

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.partner {
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner img {
  max-width: 150px;
  max-height: 80px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* For Beginners Section */
.for-beginners {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.for-beginners .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}

.beginners-content h2 {
  margin-bottom: 20px;
}

.beginners-list {
  margin: 25px 0;
}

.beginners-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.beginners-list i {
  color: var(--success-color);
  margin-right: 10px;
  font-size: 1.1rem;
}

.beginners-image img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.beginners-image img:hover {
  transform: scale(1.03);
}

/* Newsletter Section */
.newsletter {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.newsletter h2 {
  color: white;
  margin-bottom: 15px;
}

.newsletter p {
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
}

.newsletter-form button {
  background-color: var(--dark-color);
  border-radius: 0 4px 4px 0;
  padding: 0 25px;
}

.newsletter-form button:hover {
  background-color: var(--secondary-color);
}

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

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

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
  border-radius: 8px;
}

.footer-logo p {
  color: #ccc;
  font-size: 0.9rem;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4:after,
.footer-legal h4:after,
.footer-contact h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul,
.footer-legal ul,
.footer-contact ul {
  margin-left: 0;
}

.footer-links a,
.footer-legal a {
  color: #ccc;
  transition: var(--transition);
  display: block;
  margin-bottom: 10px;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer-contact ul li {
  color: #ccc;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact ul li i {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom .social-icons {
  justify-content: center;
  margin-bottom: 20px;
}

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 999;
  display: none;
}

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

.cookie-content p {
  margin-bottom: 20px;
  max-width: 800px;
}

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

.cookie-content a {
  font-size: 0.9rem;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .post-grid,
  .values-grid,
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .post-item {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .for-beginners .container,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image,
  .beginners-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero {
    padding: 50px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .navbar li {
    margin: 10px 0;
  }

  .post-header h1 {
    padding: 20px 20px 0;
    font-size: 1.8rem;
  }

  .post-meta {
    padding: 0 20px 15px;
    font-size: 0.85rem;
  }

  .post-content {
    padding: 20px;
  }

  .post-intro {
    font-size: 1.1rem;
  }

  .post-footer {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .testimonials-slider {
    grid-template-columns: 1fr;
  }

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

  .newsletter-form input {
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .newsletter-form button {
    border-radius: 4px;
    width: 100%;
  }

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

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

@media (max-width: 480px) {
  .post-navigation {
    flex-direction: column;
    gap: 20px;
  }

  .nav-previous,
  .nav-next {
    max-width: 100%;
  }

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

  .post-meta {
    flex-direction: column;
    gap: 5px;
  }

  header .container {
    flex-direction: column;
  }

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