
  
  /* Main Section */
  .share-care-section {
    padding: 40px 20px;
    background-color: #ffffff; /* White background for contrast */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    width: 80%;
    margin: 30px auto;
  }
  
  .content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap; /* Adjust layout on smaller screens */
  }
  
  .left-column {
    flex: 1 1 60%; /* Left column takes up more space */
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .right-column {
    flex: 1 1 35%; /* Right column takes up less space */
    text-align: center;
  }
  
  .right-column img.share-care-logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  
  p.highlight {
    font-size: 1.2rem;
    font-weight: bold;
    color: #004d40; /* Emphasize the green tone */
    margin-bottom: 20px;
  }
  
  /* List Styling */
  ul {
    list-style-type: disc;
    margin-left: 20px;
    line-height: 1.6;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .content {
      flex-direction: column;
    }
  
    .left-column, .right-column {
      flex: 1 1 100%; /* Full width for each column */
    }
  }
  
  @media (max-width: 480px) {
    .share-care-section {
      width: 90%; /* Slightly narrower for small screens */
    }
  
    h2 {
      font-size: 1.5rem;
    }
  
    a.btn-highlight {
      font-size: 0.9rem;
      padding: 10px 15px;
    }
  }
  