:root {
  --tc-colors-red-trova:#f65c4e;
  --tc-colors-red-coral:#dc5f4f;
  --tc-colors-teal-trova:#00b2c9;
}
<style>

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

    body {
      font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Oxygen, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      color: #1A1F2C;
      background-color: #FFFFFF;
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    h1, h2, h3, h4, h5, h6 {
      font-weight: 600;
      line-height: 1.3;
    }

    h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    h2 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
      text-align: center;
    }

    h3 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
    }

    h4 {
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    .requirement-list ul {
      list-style-type: none;
      margin-left: 0;
    }

    .requirement-list ul li {
      margin-bottom: 0.75rem;
      position: relative;
      padding-left: 1.5rem;
    }

    .requirement-list ul li:before {
      content: '•';
      color: #F97316;
      font-weight: bold;
      position: absolute;
      left: 0;
    }

    img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
    }

    .section {
      padding: 60px 0;
    }

    .section-subtitle {
      text-align: center;
      color: #555555;
      margin-bottom: 40px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Download Button */
    .download-container {
      display: flex;
      justify-content: center;
      margin-top: 1.5rem;
      margin-bottom: 2rem;
    }
    
    .download-button {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      background-color: var(--tc-colors-red-trova);
      color: white;
      font-weight: 500;
      border: 1px solid transparent;
      border-radius: 0.5rem;
      cursor: pointer;
      transition: all 0.2s ease;
      text-decoration: none;
    }
    
    .download-button:hover {
      background-color: var(--tc-colors-red-trova);
      color: white;
      text-decoration:none;
    }
    
    .download-icon {
      font-size: 1.25rem;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(to bottom right, #EFF6FF, rgba(239, 246, 255, 0.3), #F0F9FF);
      padding: 60px 0 40px;
      text-align: center;
    }

    .tag {
      display: inline-block;
      background: #EFF6FF;
      color: var(--tc-colors-teal-trova);
      padding: 8px 16px;
      border-radius: 100px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      margin-bottom: 20px;
    }

    .subtitle {
      color: #555555;
      max-width: 700px;
      margin: 0 auto 40px;
      font-size: 1.2rem;
    }

    .hero-images {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
    }

    .hero-image {
      position: relative;
      height: 300px;
      overflow: hidden;
    }

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

    .image-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px;
      background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
      color: white;
      text-align: left;
    }

    .image-caption h3 {
      margin-bottom: 5px;
    }

    .image-caption p {
      font-size: 0.9rem;
      opacity: 0.9;
    }

    /* Key Info Section */
    .key-info {
      padding: 40px 0;
    }

    .key-info-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .key-info-item {
      display: flex;
      align-items: center;
      padding: 20px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .key-info-icon {
      font-size: 1.8rem;
      margin-right: 15px;
    }

    .key-info-content h4 {
      font-size: 0.9rem;
      color: var(--text-light);
      margin-bottom: 5px;
    }

    .key-info-content p {
      font-weight: 500;
    }

    /* Requirements Section */
    .requirements-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }

    .requirement-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      border-top: 4px solid var(--tc-colors-teal-trova);
      padding: 20px;
    }

    .requirement-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
    }

    .requirement-icon {
      font-size: 1.8rem;
      margin-right: 15px;
    }

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

    /* Packing List */
    .packing-categories {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
      margin-bottom: 30px;
    }

    .packing-category {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      padding: 25px;
    }

    .packing-category h3 {
      margin-bottom: 15px;
      color: var(--tc-colors-teal-trova);
    }

    .packing-tips {
      background: #FFF7ED;
      border-radius: 12px;
      padding: 25px;
      margin-top: 30px;
    }

    .packing-tips h3 {
      color: #F97316;
      margin-bottom: 15px;
    }

    /* Destinations */
    .destination {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-bottom: 60px;
      align-items: center;
    }

    .destination-image {
      height: 400px;
    }

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

    .destination-content {
      padding: 20px;
    }

    .destination-content h3 {
      margin-bottom: 15px;
      font-size: 1.8rem;
      color: var(--tc-colors-teal-trova);
    }

    .destination-content p {
      margin-bottom: 20px;
    }

    .destination-content h4 {
      color: #F97316;
      margin-top: 20px;
    }

    .destination-note {
      font-style: italic;
      color: #8E9196;
      margin-top: 20px;
      font-size: 0.9rem;
    }

    .food-section {
      margin-top: 60px;
    }

    .food-section h3 {
      text-align: center;
      margin-bottom: 20px;
      color: var(--tc-colors-teal-trova);
    }

    .food-section > p {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 30px;
    }

    .food-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .food-card {
      background: white;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .food-emoji {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }

    .food-card h4 {
      margin-bottom: 10px;
    }

    .food-card p {
      font-size: 0.9rem;
      color: #555555;
    }

    /* Local Culture */
    .culture-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
      margin-bottom: 30px;
    }

    .culture-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      padding: 25px;
    }

    .culture-card h3 {
      margin-bottom: 15px;
      color: var(--tc-colors-teal-trova);
    }

    .safety-note {
      background: #FEF7CD;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 30px;
    }

    .safety-note h3 {
      color: #B54708;
      margin-bottom: 10px;
    }

    .final-tips {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      padding: 25px;
    }

    .final-tips h3 {
      text-align: center;
      margin-bottom: 20px;
      color: var(--tc-colors-teal-trova);
    }

    .tips-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-bottom: 30px;
    }

    .farewell {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid #EEEEEE;
    }

    .bon-voyage {
      font-weight: 600;
      margin-top: 10px;
      font-size: 1.1rem;
    }

    /* Print styles */
    @media print {
      body {
        font-size: 12pt;
      }
      
      .download-container {
        display: none;
      }
      
      section {
        page-break-inside: avoid;
      }
      
      h2 {
        page-break-after: avoid;
      }
      
      h3 {
        page-break-after: avoid;
      }
      
      img {
        max-height: 3in;
      }
      
      .hero-images {
        grid-template-columns: 1fr;
      }
      
      .hero-image {
        height: auto;
        max-height: 3in;
      }
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .hero-images, .key-info-grid, .requirements-grid, .packing-categories, .food-grid, .culture-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .destination {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .destination-image {
        height: 300px;
      }
      
      h1 {
        font-size: 2.5rem;
      }
    }

    @media (max-width: 640px) {
      .hero-images, .key-info-grid, .requirements-grid, .packing-categories, .food-grid, .culture-grid, .tips-grid {
        grid-template-columns: 1fr;
      }
      
      h1 {
        font-size: 2.2rem;
      }
      
      h2 {
        font-size: 1.8rem;
      }
      
      .section {
        padding: 40px 0;
      }
      
      .download-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
      }
    }
/* overrides for our brand */
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  text-wrap: balance;
}

  </style>