    /* Your scrolling text CSS goes here */
.scrolling-text-container {
  width: 100%; /* Adjust as needed */
  overflow: hidden;
  white-space: nowrap; /* Prevent text from wrapping */
}

.scrolling-text {
  display: inline-block;
  padding-left: 100%; /* Start off-screen */
  animation: scroll-left 80s linear infinite;
}

/* Pause on hover */
.scrolling-text:hover {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

    /* Your homepage CSS goes here */
.homepage-content-wrapper {
    display: flex;
    flex-direction: row; /* Sidebar and content in a row */
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    gap: 20px; /* Space between sidebar and content */
    align-items: flex-start; /* Align items to the top */
    flex-wrap: wrap; /* Allow content to wrap if screen is too small */
}

.homepage-intro {
    text-align: center;
    margin-bottom: 20px;
    width: 100%; /* Full width above the flex items */
}

.homepage-photo-container {
    width: 100%; /* Full width for the photo */
    text-align: center;
    margin-bottom: 20px;
}

.homepage-main-photo {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 10px auto;
    border-radius: 25px;
}

.homepage-photo-caption {
    display: block;
    text-align: center; /* Ensures the caption is centered */
    margin-top: 10px; /* Adds space between image and caption */
    width: 100%; /* Forces it to span the full container */
}

.homepage-photo-credit {
    display: block; /* Ensures it sits on its own line */
    text-align: center; /* Centers the credit */
    font-size: 0.9em; /* Keeps it subtle */
    color: #666; /* Soft color for readability */
    margin-top: 5px; /* Space from the image */
}

.homepage-sidebar {
    width: 20%; /* Adjust sidebar width as needed */
    padding: 15px;
    border: 1px solid #ccc;
    background-color: #f8f9fa;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

.homepage-sidebar table {
    width: 100%;
    border-collapse: collapse;
}

.homepage-sidebar th,
.homepage-sidebar td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.homepage-sidebar th {
    background-color: #f0f0f0;
}

.homepage-sidebar td a {
    text-decoration: none;
    color: #333;
}

/* Container for the text paragraphs */
.homepage-text-content {
    flex-grow: 1; /* Take up remaining space */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

.homepage-text-content > p {
    margin-bottom: 15px; /* Space between paragraphs */
}

.homepage-author-credit {
    font-style: italic;
    text-align: right; /* Aligns to the side neatly */
    font-size: 0.9em;
    color: #555;
}

.homepage-signature {
    text-align: right;
    font-size: 1em;
    font-weight: bold;
    color: #333;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
  background-color: #0056b3; /* Slightly darker for hover */
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.get-involved {
  text-align: center;
  margin: 2rem 0;
  margin-top: 1rem;
  margin-bottom: 3rem;
}