  body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: #fff8f0;
      color: #333;
    }
    header {
      background-color: #cc9900;
      color: white;
      display: flex;
      align-items: center;
      padding: 10px 20px;
    }
    header img {
      height: 70px;
      margin-right: 20px;
    }
    header h1 {
      margin: 0;
      font-size: 2em;
    }
    nav {
      background: #fff2cc;
      text-align: center;
      padding: 10px 0;
      font-weight:bold;
    }
    nav a {
      margin: 0 15px;
      color: #333;
      text-decoration: none;
      font-weight: bold;
    }
    .donate
    {
        background-color: #cc9900;
    }

    /* Image Slider */
    .slider-container {
      position: relative;
      max-width: 100%;
      height: 400px;
      overflow: hidden;
    }
    .slider-images {
      display: flex;
      transition: transform 0.5s ease-in-out;
      height: 100%;
    }
    .slider-images img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      flex-shrink: 0;
    }
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 2em;
      background-color: rgba(0, 0, 0, 0.3);
      color: white;
      padding: 10px;
      cursor: pointer;
      z-index: 100;
      user-select: none;
      border-radius: 50%;
    }
    .arrow.left {
      left: 10px;
    }
    .arrow.right {
      right: 10px;
    }

    section {
      padding: 10px 10px;
    }
  
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 20px 0;
      }
      
      .gallery-item {
        text-align: center;
      }
      
      .gallery-item img {
        width:250px;
        height:250px;
        margin:10px;
        border: 2px solid #cc9900;
        border-radius: 5px;
        transition: transform 0.3s ease;
      }
      
      .gallery-item span {
        display: block;
        margin-top: 8px;
        font-weight: bold;
        color: #444;
      }
      
      .gallery-item img:hover {
        transform: scale(1.05);
      }
      
    footer {
      background-color: #333;
      color: white;
      text-align: center;
      padding: 20px;
      display: flex;
    }
    .mantra-img {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      border-radius: 8px;
      object-position:top;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .mantra-text {
      font-size: 1.25rem;
      font-weight: 500;
      line-height: 1.8;
      padding: 20px;
      background-color: #f8f9fa;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .section-title {
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
      font-size: 2rem;
    }
    .highlight-box {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }