/* General body and container settings */
body {
    background-color: white;  /* Changed from black */
    color: black;             /* Changed text color to dark for contrast */
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
}

/* Title Styles */
.home-title {
    font-size: 44px;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Section Titles */
.home-section-title {
    font-size: 36px;
    color: #4CBB17;  /* remains green */
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Lead Paragraphs */
.home-lead {
    font-size: 24px;
    margin-bottom: 1rem;
}

/* Capabilities list and container */
.home-capabilities p {
    font-size: 24px;
    margin-bottom: 1rem;
}
.home-capabilities ul {
    list-style-type: none;
    padding-left: 1rem;
}
.home-capabilities ul li::before {
    content: "\25BA"; /* a triangle bullet */
    margin-right: 5px;
    color: black;      /* changed to black for visibility on white */
    font-size: 18px;
}

/* Director message */
.home-director-name {
    font-size: 24px;
    margin-bottom: 0.5rem;
}
.home-director-quote {
    font-size: 20px;
    margin-bottom: 1rem;
}

/* Main Paragraphs */
.home-paragraph {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 2rem;
}

/* Event Titles and Link */
.home-event-title {
    font-size: 24px;
    margin-bottom: 0.5rem;
}
.home-link {
    font-size: 24px;
    color: #007bff;
    text-decoration: none;
}
.home-link:hover {
    text-decoration: underline;
}

/* Contact Information */
.home-contact {
    font-size: 24px;
    margin-bottom: 0.5rem;
}

/* Utility spacing classes (if needed) */
.py-4 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
