body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fdfdfd;
    color: #333;
  }
  
  /* Header */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #f8efdd;
    border-bottom: 2px solid #eee;
  }
  .header-left .logo {
    max-width: 90px;
    padding: 5px;
  }
  .header-center {
    text-align: center;
    flex: 1;
  }
  .header-center h1 {
    margin: 0;
    font-size: 2rem;
    color: #b23a48;
  }
  .header-center .tagline {
    font-size: 1.1rem;
    color: #666;
    margin-top: 5px;
  }
  
  /* About Us */
  .about {
    position: relative;
    background: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1200") no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
  }
  .about::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
  }
  .about .overlay {
    position: relative;
    max-width: 700px;
    margin: auto;
    background: rgba(255,255,255,0.15);
    padding: 30px;
    border-radius: 12px;
  }
  .about h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
  }
  .about p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f1f1f1;
  }
  
  /* Menu */
  .menu {
    padding: 50px 20px;
    text-align: center;
  }
  .menu h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #b23a48;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  .card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s;
  }
  .card:hover {
    transform: translateY(-5px);
  }
  .card h3 {
    margin: 0 0 10px;
    color: #333;
  }
  .card p {
    font-size: 1rem;
    color: #555;
    font-weight: bold;
  }
  
  /* Contact */
  .contact {
    text-align: center;
    padding: 50px 20px;
    background: #f7f7f7;
  }
  .contact h2 {
    margin-bottom: 20px;
    color: #333;
  }
  .btn {
    display: inline-block;
    margin: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  }
  .btn.call { background: #28a745; }
  .btn.whatsapp { background: #25d366; }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    background: #222;
    color: #fff;
  }
  