/* Base Styles */
:root {
  --primary-color: #4a89dc;
  --secondary-color: #f5a623;
  --accent-color: #e64b50;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --text-color: #333333;
  --light-text: #7a7a7a;
  --white: #ffffff;
  --black: #000000;
  --background-light: #f9f9f9;
  --gray-light: #e0e0e0;
  --gray: #aaaaaa;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --border-radius: 5px;
  --shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5em;
  color: var(--dark-color);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5em;
}

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

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

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

ul, ol {
  list-style-position: inside;
  margin-bottom: 1.5em;
}

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

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

.btn:hover {
  background-color: var(--dark-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.center {
  text-align: center;
  margin-top: 2rem;
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

nav ul {
  display: flex;
  margin: 0;
}

nav ul li {
  list-style: none;
  margin-left: 30px;
}

nav ul li:first-child {
  margin-left: 0;
}

nav ul li a {
  color: var(--dark-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

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

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

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

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 120px 0;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* Featured Destinations */
.featured-destinations {
  padding: 80px 0;
  background-color: var(--background-light);
}

.featured-destinations h2,
.latest-posts h2,
.this-day-history h2,
.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

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

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

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

.destination-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.3rem;
}

.destination-card p {
  padding: 0 20px;
  color: var(--light-text);
}

.destination-card .btn-small {
  margin: 0 20px 20px;
}

/* Latest Posts */
.latest-posts {
  padding: 80px 0;
}

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

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

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

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

.post-content {
  padding: 20px;
}

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

.date {
  display: block;
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

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

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

/* This Day in History */
.this-day-history {
  padding: 80px 0;
  background-color: var(--background-light);
}

.history-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: center;
}

.history-image img {
  border-radius: var(--border-radius);
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.history-text h3 {
  color: var(--accent-color);
  margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
}

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

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

.quote {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
}

.quote:before {
  content: '"';
  font-size: 40px;
  position: absolute;
  left: 0;
  top: -15px;
  color: var(--primary-color);
  font-family: var(--font-heading);
}

.author {
  text-align: right;
  font-weight: 600;
  color: var(--dark-color);
}

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

.newsletter h2 {
  color: var(--white);
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto 30px;
}

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

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-family: var(--font-body);
}

.newsletter-form .btn {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

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

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

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

.footer-logo p {
  color: var(--gray);
}

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

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

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

.footer-links ul li a {
  color: var(--gray);
}

.footer-links ul li a:hover {
  color: var(--white);
}

.footer-contact p {
  color: var(--gray);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
}

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

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

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

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.legal-links a {
  color: var(--gray);
}

.legal-links a:hover {
  color: var(--white);
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

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

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.btn-cookie {
  padding: 8px 16px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-cookie.customize {
  background-color: var(--white);
  color: var(--dark-color);
}

.btn-cookie.reject {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-cookie:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.cookie-policy {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.cookie-policy a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Page Header */
.page-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/1.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 15px;
}

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

.blog-filters {
  margin-bottom: 40px;
}

.search-bar {
  display: flex;
  max-width: 500px;
  margin: 0 auto 30px;
}

.search-bar input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-family: var(--font-body);
}

.search-bar button {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0 15px;
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  cursor: pointer;
}

.category-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.category-filters span {
  font-weight: 600;
  margin-right: 10px;
}

.filter-btn {
  background-color: var(--background-light);
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
}

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

.blog-grid .post-card {
  display: flex;
  flex-direction: column;
}

.blog-grid .post-card img {
  height: 200px;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 5px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--background-light);
  color: var(--text-color);
  font-weight: 600;
  transition: var(--transition);
}

.pagination a:hover,
.pagination a.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.pagination a.next {
  width: auto;
  padding: 0 15px;
  border-radius: 20px;
  gap: 5px;
}

/* Post Meta */
.post-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--light-text);
  font-size: 0.9rem;
}

.category {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

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

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

.post-header h1 {
  margin-bottom: 20px;
}

.post-main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}

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

.post-content h2 {
  margin-top: 40px;
}

.post-content .intro {
  font-size: 1.2rem;
  color: var(--dark-color);
  line-height: 1.8;
}

.post-image {
  margin: 30px 0;
}

.post-image img {
  width: 100%;
  border-radius: var(--border-radius);
}

.image-caption {
  text-align: center;
  font-style: italic;
  color: var(--light-text);
  margin-top: 10px;
}

.post-list {
  background-color: var(--background-light);
  padding: 20px 20px 20px 40px;
  border-radius: var(--border-radius);
}

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

.post-map {
  margin: 40px 0;
  background-color: var(--background-light);
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
}

.post-map h3 {
  margin-bottom: 20px;
}

.author-bio {
  display: flex;
  gap: 20px;
  background-color: var(--background-light);
  padding: 20px;
  border-radius: var(--border-radius);
  margin: 40px 0;
}

.author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h3 {
  margin-bottom: 10px;
}

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

.back-to-blog {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.post-nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.disabled {
  color: var(--gray);
  cursor: not-allowed;
}

.next-post {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

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

.related-posts h2 {
  text-align: center;
  margin-bottom: 30px;
}

.small-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

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

.about-image img {
  border-radius: var(--border-radius);
  width: 100%;
}

.about-values {
  padding: 80px 0;
  background-color: var(--background-light);
}

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

.value-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

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

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

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

.team-member {
  text-align: center;
}

.team-member img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 15px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

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

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

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

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

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

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

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

.contact-info h2,
.contact-form-container h2 {
  margin-bottom: 20px;
}

.contact-details {
  margin: 30px 0;
}

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

.contact-icon {
  color: var(--primary-color);
  margin-right: 15px;
}

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

.contact-text p a {
  color: var(--text-color);
}

.contact-text p a:hover {
  color: var(--primary-color);
}

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

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

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--gray-light);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
}

.form-group textarea {
  resize: vertical;
}

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

.checkbox-group input {
  width: auto;
}

.checkbox-group label {
  margin: 0;
}

.map-section {
  padding: 0 0 80px;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

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

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

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

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

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

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

.faq-item h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.faq-item p {
  margin-bottom: 0;
}

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

.modal-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  max-width: 500px;
  text-align: center;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: var(--gray);
}

.modal-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

/* Destinations Map */
.destinations-map {
  padding: 80px 0;
}

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

.interactive-map {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.europe-map {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-align: center;
  padding: 20px;
}

.map-overlay p {
  max-width: 600px;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.destination-regions {
  padding: 80px 0;
}

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

.region {
  margin-bottom: 60px;
}

.region h3 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.featured-itineraries {
  padding: 80px 0;
  background-color: var(--background-light);
}

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

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

.itinerary-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.itinerary-content {
  padding: 20px;
}

.itinerary-content h3 {
  margin-bottom: 10px;
}

.itinerary-highlights {
  margin: 15px 0;
  list-style: none;
}

.itinerary-highlights li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}

.itinerary-highlights li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.travel-tips {
  padding: 80px 0;
}

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

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

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

.tip-icon {
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

/* Media Queries */
@media (max-width: 991px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

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

  .hero {
    padding: 100px 0;
  }

  .history-content,
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .history-image img {
    height: auto;
  }

  .about-image {
    order: -1;
  }

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

@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li {
    margin: 0 10px 10px;
  }

  .hero {
    padding: 80px 0;
  }

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

  .post-main-image {
    height: 300px;
  }

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

  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 10px;
  }

  .newsletter-form .btn {
    border-radius: var(--border-radius);
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .social-icons {
    justify-content: center;
  }

  .legal-links {
    flex-direction: column;
    gap: 10px;
  }

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

@media (max-width: 480px) {
  .cookie-buttons {
    flex-direction: column;
  }

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

  .post-nav-links {
    align-items: flex-start;
  }
}
