*  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f9f9f9;
  }

  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  /* Header Styles */
  header {
      background: linear-gradient(135deg, #e10a5a 0%, #9c0d63 100%);
      color: white;
      padding: 1.5rem 0;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
  }

  .logo {
      font-size: 1.8rem;
      font-weight: 700;
      text-decoration: none;
      color: white;
  }

  nav ul {
      display: flex;
      list-style: none;
  }

  nav ul li {
      margin-left: 1.5rem;
  }

  nav ul li a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: opacity 0.3s;
  }

  nav ul li a:hover {
      opacity: 0.8;
      text-decoration: underline;
  }

  /* Hero Section */
  .hero {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1519741497674-611481863552?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
      background-size: cover;
      background-position: center;
      color: white;
      text-align: center;
      padding: 5rem 1rem;
      margin-bottom: 3rem;
  }

  .hero h1 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
      line-height: 1.2;
  }

  .hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 2rem;
  }

  .cta-button {
      display: inline-block;
      background-color: #e10a5a;
      color: white;
      padding: 0.9rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: background-color 0.3s, transform 0.3s;
  }

  .cta-button:hover {
      background-color: #c50950;
      transform: translateY(-3px);
  }

  /* Main Content */
  main {
      padding-bottom: 3rem;
  }

  section {
      margin-bottom: 3rem;
      background-color: white;
      border-radius: 10px;
      padding: 2rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  h2 {
      color: #9c0d63;
      border-bottom: 2px solid #f0f0f0;
      padding-bottom: 0.7rem;
      margin-bottom: 1.5rem;
      font-size: 1.8rem;
  }

  h3 {
      color: #e10a5a;
      margin: 1.5rem 0 0.8rem;
      font-size: 1.4rem;
  }

  p {
      margin-bottom: 1rem;
  }

  ul, ol {
      margin-left: 1.5rem;
      margin-bottom: 1.5rem;
  }

  li {
      margin-bottom: 0.5rem;
  }

  /* Tips Section */
  .tips-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-top: 1.5rem;
  }

  .tip-card {
      background-color: #f8f9fa;
      border-left: 4px solid #e10a5a;
      padding: 1.5rem;
      border-radius: 0 8px 8px 0;
  }

  /* Cities Section */
  .cities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-top: 1.5rem;
  }

  .city-card {
      background-color: #f8f9fa;
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.3s;
  }

  .city-card:hover {
      transform: translateY(-5px);
  }

  .city-img {
      height: 150px;
      background-color: #ddd;
      background-size: cover;
      background-position: center;
  }

  .city-content {
      padding: 1.2rem;
  }

  .city-content h3 {
      margin-top: 0;
  }

  /* Recommended Sites */
  .sites-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-top: 1.5rem;
  }

  .site-card {
      border: 1px solid #eaeaea;
      border-radius: 8px;
      padding: 1.5rem;
      text-align: center;
      transition: box-shadow 0.3s;
  }

  .site-card:hover {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  }

  .site-card h3 {
      color: #333;
  }

  .rating {
      color: #ffc107;
      font-size: 1.2rem;
      margin: 0.5rem 0;
  }

  .visit-button {
      display: inline-block;
      background-color: #9c0d63;
      color: white;
      padding: 0.6rem 1.5rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 600;
      margin-top: 1rem;
      transition: background-color 0.3s;
  }

  .visit-button:hover {
      background-color: #7a0a4e;
  }

  /* Footer */
  footer {
      background-color: #333;
      color: white;
      padding: 3rem 0 2rem;
      margin-top: 3rem;
  }

  .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
  }

  .footer-section h3 {
      color: #e10a5a;
      margin-bottom: 1.2rem;
      font-size: 1.3rem;
  }

  .footer-section ul {
      list-style: none;
      margin-left: 0;
  }

  .footer-section ul li {
      margin-bottom: 0.7rem;
  }

  .footer-section ul li a {
      color: #ddd;
      text-decoration: none;
      transition: color 0.3s;
  }

  .footer-section ul li a:hover {
      color: #e10a5a;
  }

  .copyright {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid #444;
      color: #aaa;
      font-size: 0.9rem;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .header-container {
          flex-direction: column;
          text-align: center;
      }

      nav ul {
          margin-top: 1rem;
          justify-content: center;
      }

      nav ul li {
          margin: 0 0.8rem;
      }

      .hero h1 {
          font-size: 2.2rem;
      }

      .hero p {
          font-size: 1rem;
      }

      .tips-grid, .cities-grid, .sites-grid {
          grid-template-columns: 1fr;
      }
  }
