.additional_content {
	body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f9;
        }
        header {
            background-color: #803f1d;
            color: white;
            padding: 20px 10%;
            text-align: center;
        }
        header h1 {
            margin: 0;
            font-size: 2.5em;
        }
        header p {
            font-size: 1.2em;
            margin: 10px 0 0;
	    text-align: center;
        }
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 10px;
        }
        .member-card {
            display: flex;
            align-items: center;
            background-color: white;
            margin: 10px 0;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        .member-card img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin-right: 20px;
        }
.carousel-container {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 400%;
}

.member-card {
    flex: 0 0 25%;
    box-sizing: border-box;
}

.member-card img {

    height: auto;
    border-radius: 50%;
}
        .member-details {
            flex-grow: 1;
        }
        .member-details h3 {
            margin: 0;
            font-size: 1.5em;
            color: #803f1d;
        }
        .member-details p {
            margin: 5px 0;
        }
        .publisher-section {
            background-color: white;
            margin: 20px 0;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	    text-align: center;
        }
        .publisher-section h3 {
            font-size: 1.5em;
            color: #803f1d;
        }
	.publisher-section p {
	    text-align: center;
	}
        footer {
            text-align: center;
            background-color: #2b6777;
            color: white;
            padding: 10px 0;
        }
}
#board {
		.board-member {
			table { width: 100%; border-collapse: collapse; }
			td { vertical-align: top; padding: 10px; text-align: center; }
			th { text-align: center; }
			h2, h3 { margin: 0; }
			a:hover { color: #ffffff; }
		}
        /* Header Styles */
        .header-container {
            text-align: center;
            margin-bottom: 40px;
        }

        .header-container h1 {
            font-size: 2.8em;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .header-container h2 {
            font-size: 1.6em;
            font-weight: 400;
            color: #34495e;
            margin-bottom: 5px;
        }

        .header-container p {
            font-size: 1.2em;
            color: #7f8c8d;
        }

        /* Main Board Container */
        .board-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Section Title Styles */
        .section-title-full {
            font-size: 2em;
            font-weight: bold;
            color: #803f1d;
            padding-bottom: 10px;
            border-bottom: 3px solid #803f1d;
            margin-top: 50px;
            margin-bottom: 30px;
            text-align: center;
        }

        /* Placeholder for empty sections */
        .placeholder-content {
            background: #fff;
            border-radius: 8px;
            padding: 40px;
            text-align: center;
            color: #95a5a6;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            font-style: italic;
        }

        /* Grid Layout for Members */
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        /* Patron Section Layout */
        .patron-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 30px;
        }

        .patron-card {
            background: #ffffff;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            min-height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
		.patron-card p { text-align: center; }
        .patron-card h3 {
            margin: 0;
            color: #34495e;
            font-size: 1.5em;
        }


        /* Member Card Styles */
        .member-card, .member-card-full {
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            text-align: center;
            padding: 25px;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .member-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .member-card-full {
            align-items: center;
            margin-bottom: 30px;
        }

        .member-card img, .member-card-full img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px auto;
            border: 4px solid #ecf0f1;
        }

        .member-info {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .member-info h4 {
            font-size: 1.25em;
            margin: 0 0 5px;
            color: #2c3e50;
        }

        .member-info p {
            font-size: 0.95em;
            color: #555;
            line-height: 1.6;
            margin-bottom: 15px;
            flex-grow: 1; /* Pushes the button to the bottom */
			text-align: center;
        }

        .profile-link {
            display: inline-block;
            background-color: #803f1d;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
            margin-top: auto; /* Aligns button to the bottom */
            margin-left: 5px;
            margin-right: 5px;
        }

        .profile-link:hover {
            background-color: #bf6e43;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .patron-section, .grid-container {
                grid-template-columns: 1fr;
            }
            .header-container h1 {
                font-size: 2em;
            }
            .section-title-full {
                font-size: 1.5em;
            }
        }
}		