.about-us {
    text-align: center;
    background: #fff;
    padding: 40px 20px;
  }
  
  .about-header {
    background: #f1c40f;
    padding: 30px 0;
  }
  
  .about-header h2 {
    color: #4a0056;
    margin: 0;
    font-size: 35px;
  }
  
  .about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  .about-image img {
    max-width: 350px;
  }
  
  .about-content {
    max-width: 700px;
    text-align: right;
  }
  
  .about-content ul {
    list-style: none;
    padding: 0;
  }
  
  .about-content li {
    margin-bottom: 20px;
    font-size: 25px !important;
    font-weight: 600 !important;
    color: #4a0056;
    line-height: 1.8;
  }
  
  .about-content i {
    color: #4a0056;
    margin-left: 8px;
  }
  
  .about-footer {
    margin-top: 40px;
    text-align: center;
  }
  
  .about-footer hr {
    width: 80%;
    margin: 0 auto 20px;
    border: 1px solid #f1c40f;
  }
  
  .about-btn {
    background: #4a0056;
    color: #f1c40f;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  .about-btn:hover {
    background: #6a0080;
  }
  


  .creative-ideas {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
  }
  
  .creative-ideas .container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .idea-box {
    position: relative;
    width: 280px;
    height: 280px;
    cursor: pointer;
    overflow: hidden;
  }
  
  .idea-content, 
  .idea-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s ease-in-out;
  }
  
  .idea-content {
    background: #fff;
    color: #4a0056;
    z-index: 1;
  }
  
  .idea-content img {
    width: 210px;
    margin-bottom: 20px;
  }
  
  .idea-content h3 {
    font-size: 20px;
    font-weight: bold;
  }
  
  .idea-hover {
    background: #f1c40f;
    color: #fff;
    text-align: center;
    padding: -5px;
    opacity: 0;
    transform: translateY(100%);
    z-index: 2;
  }
  
  .idea-hover h3 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #4a0056;
  }
  
  .idea-box:hover .idea-hover {
    opacity: 1;
    transform: translateY(0);
  }
  
  .idea-box:hover .idea-content {
    opacity: 0;
  }
  