
body {
    font-family: 'Josefin sans', sans-serif !important;
    color: #000000;
    line-height: 1.6;
}
#main, #mainContainer, #siteWrap {
	background: #f0f0f0;
}
.section-title {
    font-family: 'Josefin sans', sans-serif !important; 
    font-size: 2rem;
    font-weight: 600; 
    text-align: left;
    margin-top: 40px;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #000000;
}

.features-blocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 23%)); 
    gap: 30px; 
    margin-bottom: 40px;
}


.feature-block {
    background-color: #ffffff;  
    padding: 20px; 
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
	border-radius: 15px;
	height: fit-content;
}

.feature-block-logo {
    max-width: 100%; 
    height: auto;
    margin: 0 auto 20px auto; 
    display: block; 
}

.feature-block-title {
    font-size: 2rem; 
    font-weight: 700; 
    margin-bottom: 10px;
    color: #000000;
}

.feature-block-short-description {
    font-size: 1.1rem; 
    line-height: 1.3;
    color: #000; 
    margin-bottom: 20px;
	text-align: center;
}


.feature-block-expand-toggle {
    cursor: pointer;
    background-color: #d9d9d9; 
    padding: 12px 0;
    margin: 20px -20px -20px; 
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #e0e0e0; 
    transition: background-color 0.2s ease-in-out;
	height: 30px;
	border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}

.feature-block-expand-toggle:hover {
    background-color: #9a9a9a;
}

.feature-block-expand-toggle .plus-sign {
    margin-top: 5px;
}


.feature-block-expanded-content {
    display: none; 
    text-align: center; 
    padding-top: 20px;
    border-top: 1px solid #e0e0e0; 
    margin-top: 20px;
}

.feature-block-long-description {
    font-size: 1.1rem;
    line-height: 1.3;
    color: #000;
    margin-bottom: 20px;
	text-align: center;
}


.learn-more-button {
    display: inline-block; 
    color: #000000;
    padding: 10px 20px;
    text-decoration: underline !important;
    font-size: 1.3rem;
    font-weight: 900; 
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	
}


.no-events-message {
    grid-column: 1 / -1; 
    text-align: center;
    padding: 30px;
    font-style: italic;
    color: #777;
}


@media (max-width: 768px) {
    .features-blocks-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 33%)); 
    }
}
@media (max-width:600px) {
    .features-blocks-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 200px)); 
    }
}
@media (max-width:480px) {
	.section-title {
		text-align: center;
	}
	.features-blocks-grid {
		grid-template-columns: 1fr;
	}
	.feature-block {
		margin: 0 auto 40px;
		width: 80%;
	}
	.feature-block-logo {
		width: 100%;
		max-width: 100%;
	}
}