/* Base Styles and Variables */
:root {
  --primary-color: #f05a5a;
  --primary-color-dark: #d33939;
  --primary-color-light: #f7a7a7;
  --secondary-color: #4e8fda;
  --secondary-color-dark: #3878c3;
  --accent-color: #ffb740;
  --dark-color: #333333;
  --dark-color-light: #555555;
  --light-color: #f9f9f9;
  --light-color-dark: #e9e9e9;
  --text-color: #333333;
  --text-color-light: #666666;
  --border-color: #dddddd;
  --success-color: #4caf50;
  --error-color: #f44336;
  --warning-color: #ff9800;
  --info-color: #2196f3;
  --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-primary: 'Noto Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-japanese: 'Noto Sans JP', sans-serif;
  
  --border-radius: 8px;
  --border-radius-sm: 4px;
  --border-radius-lg: 12px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;
  
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  --container-max-width: 1200px;
  --container-padding: 1rem;
}

/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Sans:wght@300;400;500;600;700&display=swap');

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

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

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

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

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

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

p {
  margin-bottom: 1.5rem;
}

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

ul li, ol li {
  margin-bottom: 0.5rem;
}

button, .btn-primary, .btn-outline, .btn-3d {
  display: inline-block;
  font-family: var(--font-primary);
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  line-height: 1;
  border: none;
}

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

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

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

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

.btn-3d {
  background-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 0 var(--primary-color-dark);
  position: relative;
  top: 0;
  transform: perspective(1px) translateZ(0);
}

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

.btn-3d:active {
  top: 4px;
  box-shadow: 0 0 0 var(--primary-color-dark);
}

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

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

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

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

.logo a {
  display: flex;
  align-items: center;
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1.5rem;
  text-decoration: none;
}

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

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

nav ul li {
  margin: 0 1rem;
  margin-bottom: 0;
}

nav ul li:last-child {
  margin-right: 0;
}

nav ul li a {
  color: var(--text-color);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

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

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

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

.mobile-menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--dark-color);
  border-radius: 3px;
  transition: all var(--transition-fast);
}

/* 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;
  background-repeat: no-repeat;
  height: 80vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.hero h2 {
  font-family: var(--font-japanese);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: white;
}

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

/* Featured Destinations */
.featured-destinations {
  padding: var(--spacing-xxl) 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  font-size: 2.5rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 1rem auto 0;
  border-radius: 2px;
}

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

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

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

.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.destination-info {
  padding: 1.5rem;
}

.destination-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--dark-color);
}

.destination-info p {
  color: var(--text-color-light);
  margin-bottom: 1.5rem;
}

.read-more {
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
  padding-right: 20px;
  display: inline-block;
}

.read-more::after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

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

.read-more:hover::after {
  transform: translate(5px, -50%);
}

/* Recent Posts */
.recent-posts {
  padding: var(--spacing-xxl) 0;
  background-color: var(--gray-100);
}

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

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

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

.post-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.post-info {
  padding: 1.5rem;
}

.post-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark-color);
}

.post-excerpt {
  color: var(--text-color-light);
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.view-all {
  text-align: center;
  margin-top: 3rem;
}

/* Testimonials */
.testimonials {
  padding: var(--spacing-xxl) 0;
  background-color: white;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  padding: 1rem;
}

.testimonial-content {
  background-color: var(--light-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  position: relative;
  box-shadow: var(--box-shadow);
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 5rem;
  color: var(--primary-color-light);
  opacity: 0.5;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-content p {
  position: relative;
  font-style: italic;
  z-index: 1;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

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

.testimonial-author span {
  font-weight: 500;
  color: var(--dark-color);
}

.slider-controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.prev-btn, .next-btn {
  background-color: white;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.prev-btn:hover, .next-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

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

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

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

.cta p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

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

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid white;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 1rem;
  font-family: var(--font-primary);
}

.newsletter-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 0 1.5rem;
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

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

.footer-logo img {
  height: 60px;
  width: 60px;
  margin-bottom: 1rem;
  border-radius: 50%;
}

.footer-logo h3 {
  color: white;
  margin-bottom: 0.5rem;
}

.footer-links h4, .footer-blog h4, .footer-contact h4 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-links h4::after, .footer-blog h4::after, .footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

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

.footer-links ul li, .footer-blog ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a, .footer-blog ul li a {
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.footer-links ul li a:hover, .footer-blog ul li a:hover {
  color: white;
}

.footer-contact address {
  font-style: normal;
  color: var(--gray-400);
}

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

.footer-contact address a {
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

.footer-contact address a:hover {
  color: white;
}

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

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

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

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

.footer-legal {
  color: var(--gray-500);
  font-size: 0.9rem;
}

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

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

.legal-links li {
  margin: 0;
}

.legal-links a {
  color: var(--gray-500);
  font-size: 0.9rem;
}

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

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

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

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

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

.cookie-content a {
  color: var(--gray-300);
  text-decoration: underline;
  font-size: 0.9rem;
}

.cookie-content a:hover {
  color: white;
}

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

.banner-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.page-banner h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 0.5rem;
}

.page-banner h2 {
  font-family: var(--font-japanese);
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1rem;
}

.page-banner p {
  font-size: 1.2rem;
}

/* About Page */
.about-intro {
  padding: var(--spacing-xxl) 0;
}

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

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-image {
  flex: 1;
}

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

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

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

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

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

.value-card h3 {
  margin-bottom: 1rem;
}

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

.team-section {
  padding: var(--spacing-xxl) 0;
  background-color: var(--gray-100);
}

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

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

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

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

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

.team-member > p {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-member > p + p {
  color: var(--text-color-light);
  padding: 0 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

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

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

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

.achievements {
  padding: var(--spacing-xxl) 0;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.achievement {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: transform var(--transition-medium);
}

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

.achievement-icon {
  color: var(--primary-color);
  flex-shrink: 0;
}

.achievement-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

/* Blog Page */
.blog-filters {
  padding: 2rem 0;
  background-color: var(--gray-100);
}

.filter-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.search-box {
  display: flex;
  max-width: 400px;
  position: relative;
  flex-grow: 1;
}

.search-box input {
  width: 100%;
  padding: 0.75rem 1rem;
  padding-right: 3rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1rem;
}

.search-box button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background: none;
  border: none;
  padding: 0 1rem;
  color: var(--text-color-light);
  cursor: pointer;
  transition: color var(--transition-fast);
}

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

.category-filter select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1rem;
  background-color: white;
  color: var(--text-color);
  min-width: 180px;
  cursor: pointer;
}

.active-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.active-tags span {
  font-weight: 500;
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background-color: var(--gray-200);
  color: var(--text-color);
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

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

.featured-post {
  padding: var(--spacing-xxl) 0;
}

.featured-post-content {
  display: flex;
  gap: 3rem;
  align-items: center;
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.featured-post-image {
  flex: 1;
  max-width: 50%;
}

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

.featured-post-info {
  flex: 1;
  padding: 2rem;
}

.post-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--primary-color-light);
  color: var(--primary-color-dark);
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.featured-post-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.post-meta {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.post-author {
  font-weight: 500;
}

.post-date {
  color: var(--text-color-light);
}

.blog-posts {
  padding: 0 0 var(--spacing-xxl);
}

/* Blog Post Page */
.blog-post {
  margin-bottom: 3rem;
}

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

.post-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.category-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--primary-color-light);
  color: var(--primary-color-dark);
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.category-tag:hover {
  background-color: var(--primary-color);
  color: white;
}

.post-header h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.post-header h2 {
  font-size: 1.8rem;
  color: var(--text-color-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.post-meta .author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.post-featured-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

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

.post-content {
  padding: 3rem 0;
}

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

.post-content h3 {
  margin-top: 2.5rem;
  font-size: 1.8rem;
}

.post-content h4 {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.image-with-caption {
  margin: 2rem 0;
}

.image-with-caption img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.caption {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-color-light);
  font-style: italic;
}

blockquote {
  margin: 2.5rem 0;
  padding: 2rem;
  background-color: var(--gray-100);
  border-left: 4px solid var(--primary-color);
  font-style: italic;
}

blockquote p {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

blockquote cite {
  font-size: 1rem;
  color: var(--text-color-light);
  font-style: normal;
}

.checklist {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

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

.post-tags span {
  font-weight: 500;
}

.post-share {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

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

.social-share-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: white;
  transition: all var(--transition-fast);
}

.social-share-buttons a:nth-child(1) {
  background-color: #3b5998;
}

.social-share-buttons a:nth-child(2) {
  background-color: #1da1f2;
}

.social-share-buttons a:nth-child(3) {
  background-color: #bd081c;
}

.social-share-buttons a:nth-child(4) {
  background-color: #333;
}

.social-share-buttons a:hover {
  opacity: 0.8;
  transform: translateY(-3px);
}

.author-bio {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  display: flex;
  gap: 2rem;
}

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

.author-info {
  flex: 1;
}

.author-info h4 {
  font-size: 0.9rem;
  color: var(--text-color-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.related-posts {
  padding: var(--spacing-xxl) 0;
  background-color: var(--gray-100);
}

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

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

/* Contact Page */
.contact-section {
  padding: var(--spacing-xxl) 0;
}

.contact-grid {
  display: flex;
  gap: 3rem;
}

.contact-info {
  flex: 1;
}

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

.contact-info > p {
  margin-bottom: 2.5rem;
}

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

.info-item .icon {
  flex-shrink: 0;
  color: var(--primary-color);
  width: 24px;
  height: 24px;
  margin-top: 0.25rem;
}

.info-item .details h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.info-item .details p {
  color: var(--text-color-light);
  margin-bottom: 0.5rem;
}

.contact-info .social-links {
  margin-top: 3rem;
  justify-content: flex-start;
}

.contact-info .social-links h3 {
  margin-right: 1.5rem;
}

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

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

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

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

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

.form-group textarea {
  resize: vertical;
}

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

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

.form-group.form-checkbox label {
  margin-bottom: 0;
  font-weight: normal;
  font-size: 0.9rem;
}

.map-section {
  padding: 0 0 var(--spacing-xxl);
}

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

.faq-section {
  padding: var(--spacing-xxl) 0;
  background-color: var(--gray-100);
}

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

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

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

.faq-question h3 {
  font-size: 1.2rem;
  margin-bottom: 0;
  flex: 1;
}

.toggle-icon {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
}

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

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 2rem;
  border-radius: var(--border-radius);
  max-width: 500px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--text-color-light);
  font-size: 1.5rem;
  cursor: pointer;
}

.thank-you-message {
  text-align: center;
}

.thank-you-message svg {
  margin: 0 auto 1.5rem;
}

.thank-you-message h2 {
  margin-bottom: 1rem;
}

.thank-you-message p {
  margin-bottom: 2rem;
}

/* Newsletter Section */
.newsletter {
  padding: var(--spacing-xxl) 0;
  background-color: white;
}

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

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

.newsletter p {
  margin-bottom: 2.5rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-text, .about-image {
    flex: auto;
    width: 100%;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .featured-post-content {
    flex-direction: column;
    gap: 0;
  }
  
  .featured-post-image {
    max-width: 100%;
  }
  
  .contact-grid {
    flex-direction: column;
  }
  
  .author-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .author-info .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    height: 60vh;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
  }
  
  .newsletter-form button {
    border-radius: var(--border-radius);
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-legal .legal-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  h3 {
    font-size: 1.3rem;
  }
  
  .hero {
    height: 50vh;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero h2 {
    font-size: 1.3rem;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
  
  .post-header h2 {
    font-size: 1.4rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .post-meta .author {
    width: 100%;
  }
  
  .post-meta .post-info {
    width: 100%;
  }
  
  .post-featured-image {
    height: 300px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}
