body {
    font-family: Georgia, serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}
.header {
    background-color: #144fb3;
    color: white;
    text-align: left;
    padding: 10px 20px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}
.header-text {
    flex-grow: 1;
    text-align: center;
    font-size: 40px;
    margin-right: 265px; /* Prevent overlap with the logo */
}
.nav {
    background-color: #666;
    padding: 10px 0;
    text-align: center;
}
.nav a {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
}
.nav a:hover {
    background-color: #999;
}
.content, .article-list {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border: 1px solid #ddd;
}
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}
h2 {
    color: #333;
}
.news-section, .workshop-info, .history-section, .article-section, .article-info {
    margin-bottom: 20px;
}
.news-item, .history-item, .article-item {
    margin-bottom: 10px;
}
.history-logo-row {
    display: flex;
    justify-content: center; /* Space between the images */
    margin: 20px 0;
}

.history-logo-row img {
    max-width: 300px; /* Optional: limit the maximum width of each image */
    display: block;
    margin: 0 auto; /* Center images in case they are narrower than 48% */
}
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.project-item {
    background-color: #fff;
    border: 1px solid #ddd;
    text-align: center;
    padding: 10px;
}
.project-item img {
    width: 100%;
    height: auto;
    display: block;
}
.project-item h3 {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}
.project-item a {
    text-decoration: none;
    color: inherit;
}
.project-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: flex;
    align-items: center;
    margin: 20px auto;
}
.project-description {
    margin-top: 20px;
    text-align: left;
}
.project-details {
    margin-top: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
}
.project-details h3 {
    margin-top: 0;
}
.additional-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.additional-images img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
}
.back-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.back-button:hover {
    background-color: #555;
}

/* Content Styling for Articles
.content {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
} */

.article h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.article p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Article Meta (Date and Author) */
.article .article-meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
}

/* Subheadings */
.article h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

/* Article Image Styling */
.article-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 20px 0;
    display: block;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Back to Home Button */
.back-home {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

/* General Form Styling */
#contact-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Label Styling */
#contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Message Box Styling */
#contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    line-height: 1.5;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    box-sizing: border-box;
    font-family: 'Helvetica', sans-serif;
    transition: border-color 0.3s, box-shadow 0.3s;
    resize: vertical;
    min-height: 150px;  /* Minimum height for better UX */
}

/* Hover and Focus Effects */
#contact-form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    outline: none;
}

/* Placeholder Styling */
#contact-form textarea::placeholder {
    color: #888;
    font-style: italic;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
    #contact-form {
        padding: 15px;
    }

    #contact-form textarea {
        font-size: 14px;
    }
    .content {
        width: 90%;
        padding: 15px;
    }

    .article h1 {
        font-size: 28px;
    }
}

.thank-you h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.thank-you p {
    font-size: 18px;
    color: #144fb3;
}

/* Back to Home Button */
.back-home {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

.back-home:hover {
    background-color: #555;
}

