body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    color: #333;
    background: #fff;
  }
  
  .hero-banner {
    background-color:  rgb(194, 72, 113);
    padding: 120px 20px;
    color: white;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .hero-text p {
    font-size: 1.3rem;
  }
  
  .intro, .testimonial, .cta {
    text-align: center;
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
  }
  
  .decor-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px;
  }
  
  .decor-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: white;
    transition: transform 0.3s ease;
  }
  
  .decor-card:hover {
    transform: translateY(-5px);
  }
  
  .decor-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  .decor-content {
    padding: 20px;
  }
  
  .highlights-strip {
    display: flex;
    flex-wrap: wrap;
    background:  rgb(194, 72, 113);
    padding: 30px;
    justify-content: space-around;
    text-align: center;
    color:white
  }
  
  .highlights-strip div {
    flex: 1 1 200px;
    margin: 10px;
  }
  
  .testimonial blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .author {
    font-weight: bold;
    color: #e91e63;
  }
  
  .cta {
    background: #f8bbd0;
    border-top: 5px solid #e91e63;
    border-bottom: 5px solid #e91e63;
  }
  
  .book-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #e91e63;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .book-btn:hover {
    background: #c2185b;
  }
  
  
  .header {
    background-color: #2c3e50;
    color: white;
    padding: 1rem 2rem;
    text-align: center;
  }
  .header h1 {
    font-size: 2.5rem;
  }
  .footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 2rem 0;
    font-family: Arial, sans-serif;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-column h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
  display:flex;
  gap: 2rem;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
  }
  
  .footer-links li a:hover {
    color: #677e96;
  }
  
  .footer-column a {
    text-decoration: none;
    color: #ecf0f1;
  }
  
  .footer-column a:hover {
    color: #677e96;
  }
  
  .footer-bottom {
    text-align: center;
    background-color: #34495e;
    padding: 1rem;
    margin-top: 2rem;
  }
  
  .footer-bottom p {
    font-size: 1rem;
    color: #bdc3c7;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
  }
  nav ul li a:hover {
    background-color: #364b61;
  }
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
  }