.activitiesheader {
    text-align: center;
    padding-top: 50px;
    font-family: Verdana, sans-serif;
  }

  /* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    line-height: 1.6;
  }
  
  /* Two-column Layout */
  .cemt-layout {
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto;
    max-width: 1200px;
    gap: 20px;
    padding: 10px;
  }
  
  .cemt-map,
  .cemt-description {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  /* Google Map */
  .cemt-map iframe {
    border-radius: 8px;
  }
  
  /* Description Section */
  .cemt-description h1 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
  }
  
  .cemt-description p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .cemt-layout {
      flex-direction: column;
    }
  
    .cemt-map,
    .cemt-description {
      margin-bottom: 20px;
    }
  }
  