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

:root {
  --primary-color: #1a4d6d;
  --secondary-color: #2d7a9f;
  --accent-color: #e8a547;
  --highlight-color: #c7856a;
  --text-dark: #2c3e50;
  --text-light: #6b7280;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #d1d5db;
  --success-color: #27ae60;
  --error-color: #e74c3c;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  color: var(--text-dark);
  font-size: 14px;
}

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

.header-unique {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 12px 0;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

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

.logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.3s;
}

.nav-menu a:hover {
  opacity: 0.8;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}

.hero-mega {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 50%,
    var(--highlight-color) 100%
  );
  overflow: hidden;
  padding: 60px 0;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--white);
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--accent-color);
  bottom: -80px;
  left: 10%;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--white);
  top: 50%;
  left: -50px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-text h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero {
  background: var(--accent-color);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: inline-block;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--white);
  transition: background 0.3s;
  display: inline-block;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.btn {
  display: inline-block;
  background: var(--accent-color);
  color: var(--white);
  padding: 10px 24px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--white);
  padding: 8px 18px;
  text-decoration: none;
  border-radius: 4px;
  font-size: 12px;
  display: inline-block;
  transition: background 0.3s;
}

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

section {
  padding: 40px 0;
}

.intro-story,
.features-modern,
.destinations-showcase,
.experience-section,
.guide-preview,
.seasonal-guide,
.content-section,
.info-section {
  background: var(--white);
}

.intro-story {
  padding: 70px 0;
}

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

.story-text h2 {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 24px;
  line-height: 1.3;
}

.story-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-item {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 28px 20px;
  border-radius: 12px;
  text-align: center;
  color: var(--white);
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 13px;
  opacity: 0.9;
}

.features-modern {
  background: var(--bg-light);
  padding: 70px 0;
}

.features-modern h2 {
  font-size: 32px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
}

.feature-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.destinations-showcase {
  padding: 70px 0;
}

.destinations-showcase h2 {
  font-size: 32px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.showcase-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.showcase-card:hover {
  transform: translateY(-4px);
}

.showcase-large {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

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

.showcase-content {
  padding: 32px;
}

.showcase-tag {
  display: inline-block;
  background: var(--accent-color);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 12px;
}

.showcase-content h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.showcase-content p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 20px;
}

.link-arrow {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.3s;
}

.link-arrow:hover {
  color: var(--primary-color);
}

.experience-section {
  background: var(--bg-light);
  padding: 70px 0;
}

.experience-section h2 {
  font-size: 32px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.exp-card {
  background: var(--white);
  padding: 28px;
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.exp-card h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.exp-card p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

.testimonials-modern {
  padding: 70px 0;
  background: var(--white);
}

.testimonials-modern h2 {
  font-size: 32px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
}

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

.testimonial-card {
  background: var(--bg-light);
  padding: 32px;
  border-radius: 12px;
  position: relative;
}

.testimonial-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-light);
}

.guide-preview {
  background: var(--bg-light);
  padding: 70px 0;
}

.guide-preview h2 {
  font-size: 32px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.preview-item {
  background: var(--white);
  padding: 24px;
  border-radius: 8px;
}

.preview-item h3 {
  font-size: 17px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.preview-item p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

.seasonal-guide {
  padding: 70px 0;
}

.seasonal-guide h2 {
  font-size: 32px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
}

.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.season-card {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 32px;
  border-radius: 12px;
  color: var(--white);
}

.season-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.season-card p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.95;
}

.location h2,
.content-section h2,
.products-section h2,
.info-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--primary-color);
  text-align: center;
}

.content-section p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.content-section img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.location {
  background: var(--bg-light);
  padding: 70px 0;
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: auto;
}

.contact-info-box {
  background: var(--white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-box h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 24px;
}

.info-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.info-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-row span:last-child {
  font-size: 14px;
  color: var(--text-dark);
}

.contact-info-box .btn {
  margin-top: 24px;
  width: 100%;
  text-align: center;
}

.page-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 40px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 26px;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 14px;
}

.products-section {
  background: var(--bg-light);
  padding: 70px 0;
}

.products-section h2 {
  font-size: 32px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
}

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

.product-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card.featured {
  border: 3px solid var(--accent-color);
}

.product-card.featured::before {
  content: 'SUOSITUIN';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.product-card .price {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.price-note {
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 20px;
  font-style: italic;
}

.product-card ul {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
}

.product-card ul li {
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid var(--bg-light);
  position: relative;
  padding-left: 24px;
}

.product-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

.content-intro,
.content-details {
  margin-bottom: 24px;
}

.museum-list,
.tips-section {
  margin-top: 40px;
}

.museum-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.museum-item {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.museum-item h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.museum-item p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.7;
}

.tips-section {
  background: var(--bg-light);
  padding: 70px 0;
}

.tips-section h2 {
  font-size: 32px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.tip-item {
  background: var(--white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.tip-item h3 {
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--primary-color);
  font-weight: 600;
}

.tip-item p {
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.7;
}

.contact-section {
  background: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 24px;
}

.contact-form-area h2,
.contact-info-area h2 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.contact-form-area p {
  font-size: 13px;
  margin-bottom: 20px;
  color: var(--text-light);
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 13px;
  font-family: inherit;
}

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

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
}

.checkbox-group input[type='checkbox'] {
  width: auto;
}

.info-item {
  margin-bottom: 20px;
}

.info-item h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary-color);
}

.info-item p {
  font-size: 13px;
  color: var(--text-dark);
}

.map-section {
  background: var(--bg-light);
}

.thankyou-page,
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
}

.thankyou-content,
.error-content {
  text-align: center;
  color: var(--white);
  padding: 40px 20px;
}

.thankyou-icon {
  font-size: 60px;
  margin-bottom: 20px;
  background: var(--success-color);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.thankyou-content h1,
.error-content h1 {
  font-size: 28px;
  margin-bottom: 16px;
}

.error-content h1 {
  font-size: 72px;
  margin-bottom: 10px;
}

.error-content h2 {
  font-size: 24px;
  margin-bottom: 12px;
}

.thankyou-content p,
.error-content p {
  font-size: 14px;
  margin-bottom: 24px;
  opacity: 0.95;
}

.policy-page {
  background: var(--white);
  padding: 40px 0;
}

.policy-page h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.policy-page h2 {
  font-size: 20px;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.policy-page h3 {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

.policy-page p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.policy-page ul,
.policy-page ol {
  margin-left: 24px;
  margin-bottom: 12px;
}

.policy-page li {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.policy-page a {
  color: var(--secondary-color);
  text-decoration: underline;
}

.policy-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 12px;
}

.policy-page table th,
.policy-page table td {
  border: 1px solid var(--border-color);
  padding: 8px;
  text-align: left;
}

.policy-page table th {
  background: var(--bg-light);
  font-weight: 600;
}

footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 32px 0 16px;
}

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

.footer-section h4 {
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--white);
}

.footer-section p {
  font-size: 12px;
  color: var(--text-light);
}

.footer-section a {
  display: block;
  color: var(--text-light);
  text-decoration: none;
  font-size: 12px;
  margin-bottom: 6px;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--white);
}

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

.footer-bottom p {
  font-size: 12px;
  margin-bottom: 8px;
  color: var(--text-light);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 11px;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--white);
  padding: 16px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
}

.privacy-popup.show {
  display: block;
}

.popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-direction: column;
}

.popup-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.popup-content p {
  font-size: 12px;
  margin: 0;
  text-align: center;
}

.popup-content a {
  color: var(--accent-color);
  text-decoration: underline;
}

.popup-content button {
  background: var(--accent-color);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
}

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

.testimonial-disclaimer {
  text-align: center;
  margin-top: 20px;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-color);
    flex-direction: column;
    padding: 16px;
    gap: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-image {
    order: -1;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-stats {
    grid-template-columns: 1fr 1fr;
  }

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

  .showcase-large {
    grid-template-columns: 1fr;
  }

  .location-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .popup-content {
    flex-direction: column;
    text-align: center;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 13px;
  }

  .container {
    padding: 0 12px;
  }

  .hero-mega {
    min-height: 70vh;
    padding: 40px 0;
  }

  .hero-text h1 {
    font-size: 26px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-hero,
  .btn-hero-outline {
    width: 100%;
    text-align: center;
  }

  section {
    padding: 40px 0;
  }

  .intro-story,
  .features-modern,
  .destinations-showcase,
  .experience-section,
  .guide-preview,
  .seasonal-guide,
  .location {
    padding: 40px 0;
  }

  .story-text h2,
  .features-modern h2,
  .destinations-showcase h2,
  .experience-section h2,
  .testimonials-modern h2,
  .guide-preview h2,
  .seasonal-guide h2,
  .location h2 {
    font-size: 24px;
  }

  .story-stats {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 28px;
  }

  .feature-grid-modern,
  .experience-grid,
  .testimonial-slider,
  .preview-grid,
  .seasonal-grid,
  .products-grid,
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .btn {
    padding: 10px 24px;
    font-size: 13px;
  }

  .policy-page h1 {
    font-size: 24px;
  }

  .policy-page h2 {
    font-size: 18px;
  }

  .policy-page h3 {
    font-size: 15px;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 12px;
  }

  .logo {
    font-size: 15px;
  }

  .hero-text h1 {
    font-size: 22px;
  }

  .hero-text p {
    font-size: 13px;
  }

  .btn-hero,
  .btn-hero-outline {
    padding: 12px 24px;
    font-size: 13px;
  }

  .btn {
    padding: 8px 20px;
    font-size: 12px;
  }

  .story-text h2,
  .features-modern h2,
  .destinations-showcase h2,
  .experience-section h2,
  .testimonials-modern h2,
  .guide-preview h2,
  .seasonal-guide h2,
  .location h2 {
    font-size: 20px;
  }

  .stat-number {
    font-size: 24px;
  }
}
