/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Header Styles */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #ffffff; /* Replace with a valid background color value */
    border-bottom: 1px solid #e0e0e0;
}

.logo img {
    height: 50px;
}

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333333;
    font-weight: bold;
}

.nav a:hover {
    color: #007BFF;
}

/* Main Content Styles */
.main-content {
    padding: 20px;
}

.main-content h1 {
    text-align: center;
    margin-bottom: 30px;
}

.filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

.filters label {
    margin: 5px 10px;
    font-weight: bold;
}

.filters select,
.filters input {
    margin: 5px 10px;
    padding: 5px;
    min-width: 200px;
}

#union-list {
    list-style-type: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

#union-list li {
    border: 1px solid #e0e0e0;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
}

#union-list li h2 {
    margin: 0 0 10px 0;
}

#union-list li p {
    margin: 5px 0;
}

/* Footer Styles */
.footer {
    background-color: #f8f8f8;
    padding: 30px 20px;
    text-align: center;
    font-size: 16px;
    color: #666666;
}

.footer a {
    color: #007BFF;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .filters {
        flex-direction: column;
        align-items: center;
    }

    .filters label,
    .filters select,
    .filters input {
        margin: 10px 0;
    }
}

/* About Us Content Styles */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    font-size: 18px;
    color: #333333;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content strong {
    color: black;
}

.about-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 20px auto;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f0f2f5;
}

header {
    background-color: white;
    color: black;
    padding: 2rem;
    text-align: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.search-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.search-box {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.filters {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.union-list {
    display: grid;
    gap: 20px;
}

.union-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.union-card h3 {
    color: black;
    margin-bottom: 10px;
}

.union-details {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.union-description {
    color: #444;
    margin-bottom: 15px;
}

.website-link {
    color: #1a56db;
    text-decoration: none;
    font-weight: bold;
}

.website-link:hover {
    text-decoration: underline;
}