    :root {
      --primary: #b82d4d;
      --text: #222;
      --muted: #666;
      --bg: #fff8f8;
    }
    body {
      font-family: 'Poppins', sans-serif;
      margin: 0; color: var(--text);
      background: var(--bg);
      line-height: 1.6;
    }
    header {
      background: var(--primary);
      color: #fff;
      text-align: center;
      padding: 80px 20px;
    }
    header h1 {
      font-size: 40px;
      margin: 0;
      letter-spacing: 1px;
    }
    header p {
      font-size: 18px;
      margin-top: 10px;
      color: #ffe9e9;
    }
    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 40px 20px;
    }
    h2 {
      font-size: 28px;
      color: var(--primary);
      text-align: center;
      margin-bottom: 20px;
      position: relative;
    }
    h2::after {
      content: "";
      width: 60px;
      height: 3px;
      background: var(--primary);
      display: block;
      margin: 10px auto 0;
    }
    .about, .categories, .visit {
      margin-bottom: 60px;
    }
    .about p {
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
      color: var(--muted);
    }
    .categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }
    .category {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 18px rgba(0,0,0,0.06);
      text-align: center;
      padding: 25px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .category:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 25px rgba(0,0,0,0.1);
    }
    .category img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 10px;
    }
    .category h3 {
      color: var(--primary);
      font-size: 20px;
      margin-bottom: 6px;
    }
    .category p {
      color: var(--muted);
      font-size: 15px;
    }
    .cta {
      text-align: center;
      margin-top: 40px;
    }
    .cta a {
      background: var(--primary);
      color: #fff;
      text-decoration: none;
      padding: 12px 28px;
      border-radius: 8px;
      font-weight: 600;
      transition: background 0.3s;
    }
    .cta a:hover {
      background: #8f223c;
    }
    .logo{
      max-width: 250px;
    }
    .visit {
      text-align: center;
    }
    address {
      font-style: normal;
      color: var(--muted);
      margin-top: 10px;
      line-height: 1.8;
    }
    footer {
      background: var(--primary);
      color: #fff;
      text-align: center;
      padding: 30px 15px;
      font-size: 14px;
    }
    .social-icons {
      margin-bottom: 15px;
    }
    .social-icons a {
      display: inline-block;
      margin: 0 10px;
      color: #fff;
      text-decoration: none;
      font-size: 20px;
      transition: color 0.3s;
    }
    .social-icons a:hover {
      color: #ffd4dc;
    }
    /* Navigation */
nav {
  background: #b82d4d;
  color: #fff;
  padding: 12px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.logo-text {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 18px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.nav-links a:hover {
  opacity: 0.8;
}
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: #b82d4d;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.hero-logo {
  width: 160px;
  height: auto;
  margin-bottom: 15px;
}
.hero h1 {
  font-size: 40px;
  margin: 0;
  letter-spacing: 1px;
}
.hero p {
  font-size: 18px;
  margin-top: 10px;
  color: #000;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: #b82d4d;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 15px 0;
    text-align: center;
  }
  .nav-links a {
    display: block;
    margin: 10px 0;
  }
  .nav-links.active {
    display: flex;
  }
  .hero {
    padding: 60px 20px;
  }
  .hero h1 {
    font-size: 30px;
  }
}

    @media (max-width: 600px) {
      header h1 { font-size: 30px; }
    }
/* Abours page css */

 :root{--accent:#b82d4d;--muted:#666;--bg:#fffaf9;--card:#fff}
    body{font-family:Inter,system-ui,Segoe UI,Roboto,Arial; margin:0; background:var(--bg); color:#222; line-height:1.6}
    .wrap{max-width:980px;margin:28px auto;padding:20px}
    .hero{justify-content: center;flex-direction: column;background:var(--card);border-radius:12px;padding:28px;box-shadow:0 8px 30px rgba(0,0,0,0.06);display:flex;gap:20px;align-items:center}
    .hero img{width:120px;height:120px;object-fit:contain;border-radius:10px}
    .hero h1{margin:0;font-size:28px;color:var(--accent)}
    .lead{color:var(--muted);margin-top:6px}
    .section{margin-top:28px;background:var(--card);padding:20px;border-radius:12px;box-shadow:0 6px 20px rgba(0,0,0,0.04)}
    .grid{display:grid;grid-template-columns:1fr 320px;gap:20px}
    .features ul{list-style:disc;padding-left:20px;color:var(--muted)}
    .map iframe{width:100%;border-radius:8px;height:220px;border:0}
    address{font-style:normal;color:var(--muted)}
    .cta{display:inline-block;background:var(--accent);color:#fff;padding:10px 16px;border-radius:8px;text-decoration:none;margin-top:12px}
    @media(max-width:900px){.grid{grid-template-columns:1fr} .hero{flex-direction:column;align-items:center} .hero img{width:100%;height:auto}}