/* Base Styles and Variables */
:root {
  --primary-color: #e83a3a;
  --secondary-color: #123148;
  --accent-color: #ff9e4f;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --font-primary: 'Noto Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

/* Reset and Base Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: #ffffff;
  overflow-x: hidden;
}

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

h1 {
  font-size: 3.6rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.2rem;
}

p {
  margin-bottom: 1.8rem;
}

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

a:hover {
  color: darken(var(--primary-color), 10%);
}

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

ul {
  list-style: none;
  padding-left: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn, button.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 1.2rem 2.4rem;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover, button.btn:hover {
  background-color: darken(var(--primary-color), 10%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-small {
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
}

.btn-cookie {
  padding: 0.8rem 1.6rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-cookie.settings {
  background-color: var(--light-gray);
  color: var(--dark-color);
}

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

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

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

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

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

nav .navbar li a {
  color: var(--secondary-color);
  font-weight: 600;
  padding: 0.5rem 1rem;
  position: relative;
}

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

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

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

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--secondary-color);
  border-radius: 3px;
  transition: var(--transition);
}

/* 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: white;
  padding: 10rem 0;
  text-align: center;
}

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

.hero h1 {
  font-size: 4.2rem;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 2rem;
  margin-bottom: 3rem;
}

/* Countdown Timer */
.countdown-container {
  margin: 3rem 0;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: var(--border-radius);
  display: inline-block;
}

.countdown-container h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.countdown div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown span:first-child {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
}

.countdown span:last-child {
  font-size: 1.4rem;
  color: var(--light-color);
  text-transform: uppercase;
}

/* Featured Destinations Section */
.featured-destinations {
  padding: 6rem 0;
}

.featured-destinations h2 {
  text-align: center;
  margin-bottom: 4rem;
}

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

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

.destination:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.destination h3 {
  margin: 1.5rem 0 1rem;
  padding: 0 1.5rem;
}

.destination p {
  padding: 0 1.5rem;
  color: var(--gray-color);
  margin-bottom: 2rem;
}

.destination .btn-small {
  margin: 0 1.5rem 1.5rem;
}

/* Travel Tips Section */
.travel-tips {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.travel-tips h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.tip {
  background-color: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

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

.tip h3 {
  margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonial-slider {
  display: flex;
  gap: 3rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2rem;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial {
  flex: 0 0 90%;
  max-width: 600px;
}

.quote {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
}

.quote:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50px;
  width: 30px;
  height: 30px;
  background-color: white;
  transform: rotate(45deg);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}

.quote p {
  font-style: italic;
  margin-bottom: 0;
}

.author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  margin-left: 3rem;
}

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

.author h4 {
  margin-bottom: 0.5rem;
}

.author p {
  margin-bottom: 0;
  font-size: 1.4rem;
  color: var(--gray-color);
}

/* CTA Section */
.cta {
  padding: 8rem 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/7.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: white;
}

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

.cta p {
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.newsletter-form input {
  flex: 1;
  padding: 1.2rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1.6rem;
}

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

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

.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);
}

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

/* Recent Posts Section */
.recent-posts {
  padding: 6rem 0;
}

.recent-posts h2 {
  text-align: center;
  margin-bottom: 4rem;
}

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

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

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

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

.post-content {
  padding: 2rem;
}

.post h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.date {
  color: var(--gray-color);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  display: block;
}

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

.read-more:after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.read-more:hover:after {
  width: 100%;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 6rem 0 3rem;
}

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

.footer-logo img {
  height: 60px;
  margin-bottom: 1.5rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-logo .registration {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2rem;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3 {
  color: white;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.footer-links ul li,
.footer-legal ul li {
  margin-bottom: 1rem;
}

.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: var(--primary-color);
}

.footer-contact address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact address p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-contact address p a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

.copyright {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

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

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

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

.cookie-policy-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 1.4rem;
}

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

.page-header h1 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 4rem;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.8rem;
}

.about-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/17.jpg');
}

.contact-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/21.jpg');
}

/* Blog Page */
.blog-content {
  padding: 6rem 0;
}

.blog-search {
  max-width: 600px;
  margin: 0 auto 4rem;
}

.blog-search form {
  display: flex;
  position: relative;
}

.blog-search input {
  width: 100%;
  padding: 1.2rem 2rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
}

.blog-search button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--gray-color);
  cursor: pointer;
  transition: var(--transition);
}

.blog-search button:hover {
  color: var(--primary-color);
}

.blog-categories {
  margin-bottom: 4rem;
}

.blog-categories h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.blog-categories ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.blog-categories li a {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background-color: var(--light-gray);
  color: var(--dark-color);
  border-radius: 30px;
  font-size: 1.4rem;
  transition: var(--transition);
}

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

.featured-post {
  display: flex;
  margin-bottom: 6rem;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.featured-post img {
  width: 50%;
  object-fit: cover;
}

.featured-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content .category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--light-gray);
  color: var(--secondary-color);
  border-radius: 30px;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.featured-content h2 {
  margin-bottom: 1.5rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  color: var(--gray-color);
  font-size: 1.4rem;
}

.posts-grid.three-column {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

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

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

.post-image {
  position: relative;
}

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

.post-image .category {
  position: absolute;
  bottom: 15px;
  left: 15px;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: 30px;
  font-size: 1.4rem;
}

.post-details {
  padding: 2rem;
}

.post-details h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.post-details h3 a {
  color: var(--secondary-color);
  transition: var(--transition);
}

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

.post-meta .read-time {
  display: inline-block;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  gap: 0.5rem;
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
}

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

.pagination span.current {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

/* Subscribe Section */
.subscribe {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.subscribe-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.subscribe h2 {
  margin-bottom: 1.5rem;
}

.subscribe p {
  margin-bottom: 3rem;
}

.subscribe-form {
  display: flex;
  margin-bottom: 2rem;
}

.subscribe-form input {
  flex: 1;
  padding: 1.2rem;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1.6rem;
}

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

/* About Page */
.about-story {
  padding: 6rem 0;
}

.story-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.story-text {
  flex: 1;
}

.story-image {
  flex: 1;
}

.story-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.our-values {
  padding: 6rem 0;
  background-color: var(--light-color);
}

.our-values h2 {
  text-align: center;
  margin-bottom: 4rem;
}

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

.value {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.value .icon {
  margin: 0 auto 2rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-gray);
  color: var(--primary-color);
  border-radius: 50%;
}

.team {
  padding: 6rem 0;
}

.team h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  color: var(--gray-color);
}

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

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

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.team-member h3 {
  margin: 2rem 0 0.5rem;
}

.team-member p {
  padding: 0 2rem;
  margin-bottom: 1rem;
}

.team-member p:nth-of-type(1) {
  color: var(--primary-color);
  font-weight: 600;
}

.team-member .social-links {
  margin-bottom: 2rem;
}

.team-member .social-links a {
  background-color: var(--light-gray);
  color: var(--secondary-color);
}

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

.testimonial-grid .testimonial {
  flex: none;
  max-width: none;
}

/* Contact Page */
.contact-content {
  padding: 6rem 0;
}

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

.contact-info h2 {
  margin-bottom: 2rem;
}

.contact-info p {
  color: var(--gray-color);
  margin-bottom: 3rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

.info-item h3 {
  margin-bottom: 0.5rem;
}

.info-item p {
  margin-bottom: 0.5rem;
}

.info-item .subtitle {
  font-size: 1.4rem;
  color: var(--gray-color);
}

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

.contact-form h2 {
  margin-bottom: 3rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--border-radius);
  font-size: 1.6rem;
  font-family: var(--font-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

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

.required {
  color: var(--danger-color);
}

.submit-btn {
  width: 100%;
}

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

.map-section h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

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

.map-caption {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--gray-color);
}

.faq {
  padding: 6rem 0;
}

.faq h2 {
  text-align: center;
  margin-bottom: 4rem;
}

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

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

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

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

.thank-you-modal.active {
  display: flex;
}

.modal-content {
  background-color: white;
  padding: 4rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.modal-icon {
  width: 80px;
  height: 80px;
  background-color: var(--success-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

/* Blog Post Page */
.blog-post {
  padding: 6rem 0;
}

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

.post-header h1 {
  margin-bottom: 1.5rem;
}

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

.post-featured-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.post-content h2 {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

.post-content h3 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

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

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

.post-content ul {
  list-style: none;
}

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

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

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

.post-image-container .image-caption {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--light-color);
  color: var(--gray-color);
  font-style: italic;
}

.post-tags {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.post-tags span {
  font-weight: 600;
  color: var(--dark-color);
}

.post-tags a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--light-gray);
  color: var(--secondary-color);
  border-radius: 30px;
  font-size: 1.4rem;
  transition: var(--transition);
}

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

.post-author-bio {
  margin: 6rem 0;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3rem;
  background-color: var(--light-color);
  border-radius: var(--border-radius);
}

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

.author-info h3 {
  margin-bottom: 1rem;
}

.author-info p {
  margin-bottom: 1.5rem;
}

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

.author-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: white;
  color: var(--secondary-color);
  transition: var(--transition);
}

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

.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 6rem;
}

.post-nav-prev,
.post-nav-next {
  padding: 2rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

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

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

.nav-label {
  display: block;
  color: var(--gray-color);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.post-title {
  font-weight: 600;
  transition: var(--transition);
}

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

.related-posts h3 {
  text-align: center;
  margin-bottom: 3rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
}

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

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

.related-post a {
  color: var(--dark-color);
}

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

.related-post h4 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.7rem;
  transition: var(--transition);
}

.related-post a:hover h4 {
  color: var(--primary-color);
}

.related-post .post-date {
  padding: 0 1.5rem 1.5rem;
  display: block;
  color: var(--gray-color);
  font-size: 1.4rem;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  html {
    font-size: 60%;
  }
  
  .story-content {
    flex-direction: column;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 58%;
  }
  
  h1 {
    font-size: 3.2rem;
  }
  
  h2 {
    font-size: 2.6rem;
  }
  
  .hamburger {
    display: flex;
  }
  
  nav .navbar {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  
  nav .navbar.active {
    transform: translateY(0);
  }
  
  .featured-post {
    flex-direction: column;
  }
  
  .featured-post img {
    width: 100%;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .post-navigation {
    grid-template-columns: 1fr;
  }
  
  .post-nav-next {
    text-align: left;
  }
  
  .newsletter-form,
  .subscribe-form {
    flex-direction: column;
  }
  
  .newsletter-form input,
  .subscribe-form input,
  .newsletter-form .btn,
  .subscribe-form .btn {
    width: 100%;
    border-radius: var(--border-radius);
  }
  
  .newsletter-form .btn,
  .subscribe-form .btn {
    margin-top: 1rem;
  }
  
  .post-author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .author-social {
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  html {
    font-size: 55%;
  }
  
  .hero h1 {
    font-size: 3.6rem;
  }
  
  .countdown {
    gap: 1rem;
  }
  
  .countdown span:first-child {
    font-size: 2.5rem;
  }
  
  .countdown span:last-child {
    font-size: 1.2rem;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}
