/* Desktop-first base styles */
:root {
      --primary: #020060;
      --secondary: #ff5533;
      --accent: #414089;
      --text-primary: #020060;
      --text-light: #ffffff;
      --text-yellow: #ffe53c;
      --background: #ffffff;
      --background-light: #f1f6ff;
      --border: #d9e1f0;
      --shadow: rgba(0, 0, 0, 0.1);
      --shadow-lg: rgba(0, 0, 0, 0.15);
      --yellow-star: #ffd700;
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    html {
      scroll-behavior: smooth;
    }
    
    body {
      font-family: "Inter", sans-serif;
      color: var(--text-primary);
      background: var(--background);
      overflow-x: hidden;
    }
    
    .container {
      width: 100%;
      margin: 0 auto;
      padding: 0 120px;
    }
    
    .mb-0 {
      margin-bottom: 0;
    }
    
    .mb-8 {
      margin-bottom: 8px;
    }
    
    .mb-16 {
      margin-bottom: 16px;
    }
    
    .mb-24 {
      margin-bottom: 24px;
    }
    
    .mb-32 {
      margin-bottom: 32px;
    }
    
    .mb-40 {
      margin-bottom: 40px;
    }
    
    .mb-48 {
      margin-bottom: 48px;
    }
    
    .mb-64 {
      margin-bottom: 64px;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      margin: 0;
      padding: 0;
    }
    
    section {
      margin: 0;
      padding: 48px 0;
    }
    
    /* Header */
    header {
      background: var(--primary);
      color: var(--text-light);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 4px var(--shadow);
    }
    
    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      min-height: 56px;
    }
    
    .logo {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .logo-link {
      display: flex;
      align-items: center;
      text-decoration: none;
      font-family: "Space Grotesk", sans-serif;
      font-weight: 700;
      font-size: 24px;
      gap: 0;
    }
    
    .logo-trail {
      color: var(--text-light);
      letter-spacing: -0.5px;
    }
    
    .logo-adz {
      color: var(--primary);
      background: var(--text-light);
      padding: 0px;
      margin-left: 2px;
      letter-spacing: -0.5px;
      border-radius: 2px;
    }
    
    .logo-icon {
      height: 32px;
      width: auto;
      vertical-align: middle;
    }
    
    nav .nav-menu {
      display: flex;
      gap: 20px;
      list-style: none;
    }
    
    nav .nav-menu li a {
      color: var(--text-light);
      text-decoration: none;
      font-size: 16px;
      font-weight: 400 !important;
      line-height: 24px;
      transition: color 0.3s ease;
    }
    
    nav .nav-menu li a:hover {
      color: var(--text-yellow);
    }
    
    /* Hero Section */
    .hero-content {
      display: flex;
      flex-direction: row;
      gap: 24px;
    }
    
    .hero-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 20px;
    }
    
    .hero-text-content {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    
    .hero-title {
      font-size: 48px;
      font-weight: 500;
      line-height: 56px;
      color: var(--text-primary);
    }
    
    .hero-subtitle {
      font-size: 18px;
      font-weight: 400;
      line-height: 24px;
      color: var(--text-primary);
    }
    
    .text {
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
    }
    
    .d-flex-row {
      display: flex;
      flex-direction: row;
      gap: 20px;
    }
    
    .flex-1 {
      flex: 1;
    }
    
    .flex-2 {
      flex: 2;
    }
    
    .d-flex-9-1 {
      display: flex;
      gap: 20px;
      margin-top: 32px;
    }
    
    .d-flex-content {
      overflow: hidden;
    }
    
    .d-flex-content:first-child {
      flex: 1.9;
    }
    
    .d-flex-content:last-child {
      flex: 1.1;
    }
    
    .d-flex-content-text {
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-width: 600px;
    }
    
    .hero-image {
      flex: 1;
      width: 100%;
      height: 400px;
      overflow: hidden;
      box-shadow: 0 4px 12px var(--shadow);
      align-self: center;
    }
    
    .hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    
    .hero-stats {
      display: flex;
      flex-direction: row;
      gap: 64px;
      margin-top: 16px;
    }
    
    .stat-item {
      display: flex;
      font-size: 14px;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
    }
    
    /* Why Visit Section */
    .section-title {
      font-size: 32px;
      font-weight: 500;
      line-height: 40px;
      color: var(--text-primary);
    }
    
    .destination-details-header {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 24px;
    }
    
    .destination-details-header .section-title {
      margin-bottom: 0;
    }
    
    .destination-flag {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      background: #fff;
      object-fit: cover;
      flex-shrink: 0;
    }
    
    .content-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }
    
    .content-grid .content-item {
      flex: 1 1 calc(33.333% - 14px);
      min-width: 280px;
    }
    
    .content-grid-6 .content-item {
      flex: 1 1 calc(33.333% - 14px);
      min-width: 280px;
    }
    
    .content-item {
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: flex-start;
    }
    
    .icon {
      width: 24px;
      height: 24px;
    }
    
    .icon-20 {
      width: 20px;
      height: 20px;
    }
    
    .item-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    
    .item-title {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-primary);
    }
    
    .item-text {
      font-size: 14px;
      line-height: 1.6;
    }
    
    /* Tours Section */
    .tours-header {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 24px;
    }
    
    .tours-header-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 8px;
    }
    
    .partner-logo {
      margin: 0;
      height: 100%;
      width: auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .partner-img {
      height: 40px;
      width: auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .activities-count {
      font-size: 14px;
      color: var(--accent);
    }
    
    .tours-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 32px;
    }
    
    .tour-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 8px var(--shadow);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      max-width: 100%;
      min-height: 580px;
      flex: 0 1 calc(33.333% - 16px);
    }
    
    .tour-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 16px var(--shadow-lg);
    }
    
    .tour-image {
      width: 100%;
      height: 310px;
      overflow: hidden;
      position: relative;
    }
    
    .tour-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .tour-flag {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      background: #fff;
      /* padding: 2px; */
      object-fit: cover;
    }
    
    .tour-content {
      padding: 16px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex: 1;
    }
    
    .tour-rating {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .stars {
      display: flex;
      gap: 2px;
      color: var(--yellow-star);
    }
    
    .star-icon {
      width: 16px;
      height: 16px;
    }
    
    .rating-text {
      font-size: 13px;
      font-weight: 400;
      line-height: 16px;
    }
    
    .tour-title {
      font-size: 20px;
      font-weight: 700;
      line-height: 32px;
      color: var(--text-primary);
    }
    
    .tour-title-container {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    
    .tour-description {
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      color: var(--text-primary);
    }
    
    .tour-price-container {
      padding-top: 16px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      margin-top: auto;
    }
    
    .tour-price {
      font-size: 16px;
      color: var(--primary);
      margin-top: auto;
    }
    
    .tour-btn {
      background: var(--secondary);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 12px 24px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      font-size: 16px;
      font-weight: 700;
      line-height: 24px;
      width: 100%;
    }
    
    .tour-btn:hover {
      background: #e53e3e;
    }
    
    .show-more-btn {
      display: block;
      margin: 0 auto;
      background: #fff;
      color: var(--primary);
      border: 2px solid var(--accent);
      border-radius: 8px;
      padding: 12px 32px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 16px;
      font-weight: 700;
      line-height: 24px;
      width: 270px;
    }
    
    .show-more-btn:hover {
      background: var(--background-light);
      transform: translateY(-1px);
    }
    
    .big-card {
      background: var(--background-light);
      box-shadow: 0 2px 8px var(--shadow);
    }
    
    .big-card-text {
      display: flex;
      flex-direction: column;
    }
    
    .big-tour-btn {
      background: var(--secondary);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 12px 40px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      font-size: 16px;
      font-weight: 700;
      line-height: 24px;
      width: fit-content;
      align-self: flex-start;
    }
    
    .big-tour-btn:hover {
      background: #e53e3e;
    }
    
    /* Reviews Section */
    .reviews {
      color: #fff;
      text-align: center;
      margin-top: 32px;
    }
    
    .bg-blue {
      background: var(--primary);
    }
    
    .reviews-content {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 40px;
    }
    
    .reviews-title {
      font-size: 32px;
      line-height: 40px;
      font-weight: 500;
    }
    
    .reviews-rating {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
    }
    
    .rating-number {
      font-size: 48px;
      line-height: 56px;
      font-weight: 500;
    }
    
    .review-star {
      width: 32px;
      height: 32px;
    }
    
    /* Gallery Section */
    .gallery-images {
      display: flex;
      gap: 20px;
    }
    
    .gallery-img {
      flex: 1;
      width: 100%;
      height: 400px;
      object-fit: cover;
      overflow: hidden;
    }
    
    /* Starting Point Section */
    .starting-point-content {
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: flex-start;
    }
    
    .location-info {
      flex: 1;
    }
    
    .location-link {
      color: var(--primary);
      font-weight: 400;
      text-decoration: underline;
      font-size: 16px;
      line-height: 24px;
    }
    
    .location-map {
      width: 100%;
      flex: 1;
      margin-top: 24px;
    }
    
    .map-img {
      width: 100%;
      height: auto;
      box-shadow: 0 2px 8px var(--shadow);
    }
    
    .location-instructions {
      font-size: 16px;
      line-height: 24px;
      font-weight: 400;
      list-style: none;
    }
    
    .location-instructions li {
      margin-left: 16px;
      padding-left: 24px;
      position: relative;
    }
    
    .location-instructions li::before {
      content: "•";
      color: var(--accent);
      position: absolute;
      left: 0;
    }
    
    /* FAQ Section */
    .accordion {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    
    .accordion-item {
      border-top: 1px solid var(--accent);
      display: flex;
      flex-direction: row;
      justify-content: space-between;
    }
    
    .accordion-text {
      flex: 1;
      text-align: left;
      font-size: 16px;
      font-weight: 400;
      padding: 8px 0;
      color: var(--text-primary);
    }
    
    .faq-icon {
      color: var(--accent);
      transition: transform 0.3s ease;
      flex-shrink: 0;
      margin-left: 16px;
    }
    
    /* About Section */
    .about-content {
      display: flex;
      flex-direction: row;
      gap: 24px;
    }
    
    .about-content-text {
      max-width: 600px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    
    .about-text-content {
      display: flex;
      flex-direction: column;
      gap: 16px;
      max-width: 500px;
    }
    
    .about-img {
      width: 100%;
      height: auto;
      box-shadow: 0 2px 8px var(--shadow);
    }
    
    .about-btn {
      background: #fff;
      color: var(--primary);
      border: 2px solid var(--accent);
      border-radius: 8px;
      padding: 14px 32px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      align-self: flex-start;
      font-size: 14px;
    }
    
    .about-btn:hover {
      background: var(--background-light);
      transform: translateY(-1px);
    }
    
    /* Footer */
    footer {
      background: var(--primary);
      color: #fff;
      padding: 32px 0 16px;
      position: relative;
    }
    
    .footer-content {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
    }
    
    .footer-logo {
      margin-bottom: 16px;
    }
    
    .footer-logo .logo-link {
      font-size: 20px;
    }
    
    .footer-logo .logo-trail {
      color: var(--text-light);
    }
    
    .footer-logo .logo-adz {
      color: var(--primary);
      background: var(--text-light);
    }
    
    .footer-logo .logo-text {
      font-size: 20px;
      font-weight: 700;
    }
    
    .footer-about {
      display: flex;
      flex-direction: column;
      max-width: 400px;
    }
    
    .footer-section {
      display: flex;
      flex-direction: column;
      align-self: flex-start;
      min-width: 200px;
    }
    
    .footer-info {
      display: flex;
      align-items: flex-end;
      flex-direction: row;
      gap: 20px;
    }
    
    .footer-title {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 16px;
      color: #fff;
    }
    
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    
    .footer-link {
      color: var(--border);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s ease;
    }
    
    .footer-link:hover {
      color: var(--yellow-star);
    }
    
    .footer-link.underline {
      text-decoration: underline;
    }
    
    .footer-description {
      color: var(--border);
      font-size: 14px;
      line-height: 1.6;
    }
    
    .contact-item {
      display: flex;
      gap: 12px;
      font-size: 14px;
      color: var(--border);
    }
    
    .contact-item i {
      color: var(--accent);
      margin-top: 2px;
      flex-shrink: 0;
    }
    
    .footer-bottom {
      margin-top: 32px;
      padding-top: 16px;
      font-size: 12px;
      color: var(--border);
    }
    
    .footer-copyright {
      font-size: 14px;
      line-height: 16px;
      font-weight: 400;
      color: var(--border);
    }
    
    /* Navigation Active State */
    nav .nav-menu li a.active {
      color: var(--text-yellow);
      font-weight: 500;
    }
    
    /* Activities Info Box */
    .activities-info {
      padding: 32px;
      border-radius: 12px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      min-height: 200px;
      justify-content: center;
    }
    
    .activities-title {
      color: var(--text-light);
      font-size: 24px;
      font-weight: 600;
      line-height: 32px;
      margin: 0;
    }
    
    .activities-text {
      color: var(--text-light);
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      margin: 0;
    }
    
    /* Attractions Layout */
    .flex-column {
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    
    .attraction-item {
      display: flex;
      flex-direction: row;
      gap: 120px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      align-items: flex-start;
    }
    
    .attraction-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 16px var(--shadow-lg);
    }
    
    .block-image {
      flex: 1;
      width: 100%;
      height: 370px;
      overflow: hidden;
      box-shadow: 0 4px 12px var(--shadow);
      align-self: center;
    }
    
    .block-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    
    .attraction-content {
      display: flex;
      flex-direction: column;
      gap: 12px;
      justify-content: center;
    }
    
    .attraction-title {
      font-size: 20px;
      font-weight: 600;
      line-height: 28px;
      color: var(--text-primary);
      margin: 0;
    }
    
    .attraction-description {
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      color: var(--text-primary);
      margin: 0;
    }
    
    /* Back to Top */
    .back-to-top {
      position: fixed;
      bottom: 1rem;
      right: 1rem;
      width: 55px;
      height: 55px;
      background-color: var(--primary);
      color: var(--background);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 1000;
      font-weight: 700;
    }
    
    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      background-color: var(--accent);
      color: var(--background);
      transform: translateY(-3px);
    }
    
    .back-to-top-icon {
      width: 20px;
      height: 20px;
    }
    
    @media screen and (max-width: 1200px) {
      .container {
        padding: 0 60px;
      }
    
      .attraction-item {
        gap: 60px;
      }
    }
    
    @media screen and (max-width: 992px) {
      .container {
        padding: 0 40px;
      }
    
      /* Header */
      .header-content {
        flex-direction: column;
        gap: 16px;
        padding: 16px 0;
      }
    
      .logo {
        order: 1;
      }
    
      nav {
        order: 2;
      }
    
      nav .nav-menu {
        display: flex;
        justify-content: center;
        gap: 24px;
      }
    
      nav .nav-menu li a {
        font-size: 14px;
      }
    
      .mobile-menu-toggle {
        display: none;
      }
    
      /* Hero Section */
      .hero-content {
        flex-direction: column;
        gap: 32px;
      }
    
      .hero-title {
        font-size: 32px;
        line-height: 40px;
      }
    
      .hero-image {
        flex: none;
      }
    
      .hero-stats {
        gap: 32px;
      }
    
      /* d-flex-9-1 Section */
      .d-flex-9-1 {
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
      }
    
      .d-flex-content:first-child,
      .d-flex-content:last-child {
        flex: none;
      }
    
      /* Section padding */
      section {
        padding: 32px 0;
      }
    
      /* Tours Section */
      .tours-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }
    
      .tour-card {
        flex: 0 1 calc(50% - 10px);
        min-height: 480px;
      }
    
      /* Reviews Section */
      .reviews-content {
        gap: 24px;
        padding: 32px 24px;
      }
    
      .reviews-title {
        font-size: 24px;
        line-height: 32px;
      }
    
      .rating-number {
        font-size: 36px;
        line-height: 44px;
      }
    
      /* Gallery */
      .gallery-images {
        flex-direction: column;
      }
    
      .gallery-img {
        height: 250px;
      }
    
      /* Content Grid */
      .content-grid .content-item {
        flex: 1 1 calc(50% - 12px);
        min-width: 250px;
      }
    
      .content-grid-6 .content-item {
        flex: 1 1 calc(50% - 12px);
        min-width: 250px;
      }
    
      /* About Section */
      .about-content {
        flex-direction: column;
        gap: 32px;
      }
    
      .about-text-content {
        max-width: none;
      }
    
      /* Attractions Layout */
      .attraction-item {
        gap: 60px;
      }
    
    
    
      /* Footer */
      .footer-content {
        flex-direction: column;
        gap: 32px;
      }
    
      .footer-info {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
      }
    
      .footer-section {
        min-width: auto;
      }
    
      .show-more-btn {
        width: 200px;
      }
    }
    
    @media screen and (max-width: 767px) {
      .container {
        padding: 0 20px;
      }
    
      /* Header */
      .header-content {
        flex-direction: column;
        gap: 12px;
        padding: 12px 0;
        min-height: auto;
      }
    
      .logo {
        order: 1;
      }
    
      nav {
        order: 2;
      }
    
      nav .nav-menu {
        display: flex;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
      }
    
      nav .nav-menu li a {
        font-size: 13px;
        padding: 8px 12px;
      }
    
      .mobile-menu-toggle {
        display: none;
      }
    
      .logo-link {
        font-size: 20px;
      }
      
      .logo-icon {
        height: 28px;
      }
    
      /* Hero Section */
      .hero-title {
        font-size: 28px;
        line-height: 36px;
      }
    
      .hero-stats {
        gap: 16px;
      }
    
      .d-flex-row {
        flex-direction: column;
        gap: 16px;
      }
    
      .text {
        font-size: 14px;
        line-height: 20px;
      }
    
      /* d-flex-9-1 Section */
      .d-flex-9-1 {
        flex-direction: column;
        gap: 32px;
        margin-top: 20px;
      }
    
      .d-flex-content:first-child,
      .d-flex-content:last-child {
        flex: none;
      }
    
      /* Section padding */
      section {
        padding: 24px 0;
      }
    
      .section-title {
        font-size: 24px;
        line-height: 32px;
      }
    
      /* Tours Section */
      .tours-header-content {
        gap: 12px;
      }
    
      .partner-img {
        height: 32px;
      }
    
      .tour-card {
        min-height: 420px;
      }
    
      .tour-image {
        height: 250px;
      }
    
      .tour-title {
        font-size: 18px;
        line-height: 28px;
      }
    
      /* Reviews Section */
      .reviews-content {
        padding: 24px 16px;
      }
    
      .reviews-title {
        font-size: 20px;
        line-height: 28px;
        text-align: left;
      }
    
      .rating-number {
        font-size: 32px;
        line-height: 40px;
      }
    
      .review-star {
        width: 24px;
        height: 24px;
      }
    
      /* Gallery */
      .gallery-img {
        height: 200px;
      }
    
      /* Content Grid */
      .content-grid .content-item {
        flex: 1 1 100%;
        min-width: auto;
      }
    
      .content-grid-6 .content-item {
        flex: 1 1 100%;
        min-width: auto;
      }
    
      .content-item {
        flex-direction: row;
        gap: 12px;
        align-items: flex-start;
      }
    
      .item-content {
        gap: 8px;
      }
    
      /* FAQ Section */
      .accordion-item {
        flex-direction: column;
        gap: 8px;
      }
    
      .accordion-text {
        padding: 12px 0;
      }
    
      /* About Section */
      .about-content {
        gap: 24px;
      }
    
      /* Activities Info */
      .activities-info {
        padding: 24px;
        min-height: 160px;
      }
    
      .activities-title {
        font-size: 20px;
        line-height: 28px;
      }
    
      /* Attraction Items */
      .attraction-item {
        flex-direction: column;
        gap: 16px;
      }
    
      .block-image {
        flex: none;
        height: 250px;
      }
    
      .attraction-title {
        font-size: 18px;
        line-height: 24px;
      }
    
      .attraction-description {
        font-size: 14px;
        line-height: 20px;
      }
    
    
    
      /* Starting Point */
      .location-instructions {
        font-size: 14px;
        line-height: 20px;
      }
    
      .location-instructions li {
        margin-left: 8px;
        padding-left: 16px;
      }
    
      /* Footer */
      .footer-about {
        max-width: none;
      }
    
      .footer-info {
        gap: 20px;
      }
    
      .contact-item {
        font-size: 13px;
      }
    
      .show-more-btn {
        width: 100%;
        max-width: 300px;
      }
    }
    
    @media screen and (max-width: 576px) {
      .container {
        padding: 0 16px;
      }
    
      /* Header */
      nav .nav-menu {
        gap: 12px;
      }
    
      nav .nav-menu li a {
        font-size: 12px;
        padding: 6px 8px;
      }
    
      .logo-link {
        font-size: 18px;
      }
    
      .hero-title {
        font-size: 24px;
        line-height: 32px;
      }
    
      .hero-image {
        flex: none;
        height: 250px;
        max-height: 250px;
      }
    
      .section-title {
        font-size: 22px;
        line-height: 30px;
      }
    
      .partner-img {
        height: 24px;
      }
    
      .tours-grid {
        flex-direction: column;
      }
    
      .tour-card {
        min-height: 380px;
      }
    
      .tour-image {
        height: 180px;
      }
    
      .reviews-title {
        font-size: 18px;
        line-height: 26px;
      }
    
      .rating-number {
        font-size: 28px;
        line-height: 36px;
      }
    }
    
    /* High DPI/Retina Displays */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
      .hero-img,
      .tour-img,
      .block-img,
      .gallery-img,
      .about-img,
      .map-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
      }
    }
    
    /* Reduced motion accessibility */
    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }
    
    /* Focus styles for accessibility */
    button:focus-visible,
    a:focus-visible,
    .accordion-button:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
    }