 .community-page-hero {
     position: relative;
     height: 30vh;
     width: 100%;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     padding: 60px;
     margin-top: 100px;
     background-color: rgba(246, 246, 244, 0.96);
     color: black;
 }

 /* Create a pseudo-element for the circuit background */
 .community-page-hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: url('../images/Circuit_Background.png');
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     opacity: 0.2;
     /* This makes the circuit pattern 20% visible */
     z-index: 1;
 }


 .community-page-hero h1 {
     font-size: 3rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 .community-container {
     max-width: 1200px;
     margin: 40px auto;
     padding: 0 20px;
 }

 .community-card {
     display: flex;
     align-items: center;
     background: white;
     border-radius: 10px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     margin-bottom: 30px;
     padding: 20px;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     cursor: pointer;
 }

 .community-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .card-icon {
     flex: 0 0 120px;
     margin-right: 30px;
 }

 .card-icon img {
     width: 100%;
     height: auto;
     border-radius: 8px;
 }

 .card-content {
     flex: 1;
 }

 .card-content h2 {
     color: #333;
     margin: 0 0 10px 0;
     font-size: 24px;
 }

 .card-content p {
     color: #666;
     margin: 0;
     line-height: 1.5;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .community-card {
         flex-direction: column;
         text-align: center;
     }

     .card-icon {
         margin: 0 0 20px 0;
         flex: 0 0 80px;
     }

     .card-content h2 {
         font-size: 20px;
     }
 }

 @media (max-width: 480px) {
     .community-container {
         padding: 0 15px;
         margin: 20px auto;
     }

     .card-content p {
         font-size: 14px;
     }
 }