.page-title {
 text-align: center;
 font-size: 48px !important; 
 color: #322f33;
 text-transform: uppercase;
 font-weight: 900;
 margin-bottom: 10px;
 padding-bottom: 5px;
 display: block;
 text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Subtle text shadow */
 border-bottom: 2px solid #99c7c6; /* Teal line */
 position: relative;
line-height: 1.2;
letter-spacing: 2px;
}

.page-title::after {
 content: "";
 display: block;
 width: 100%; 
 height: 2px;
 background: linear-gradient(to right, #b87c9e, #99c7c6);
 margin: 10px auto 0; /* Add spacing above the line */
}

/* Sub-Headers */
.section-header {
 font-size: 28px;
 font-weight: 700;
 color: #322f33;
 margin-bottom: 15px;
 text-align: center;
line-height: 1.3;
}

.content-block-content {
 padding: 40px;
 margin-top: 20px;
 border-radius: 8px;
 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02); 
}

/*SPONSORS*/
.sponsors {
 text-align: center;
 padding: 50px 20px;
 background-color: #f8f6f2; /* Soft neutral background */
}

.sponsor-container {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 40px; /* Space between logos */
 flex-wrap: wrap; /* Ensures responsiveness */
}

.sponsor img {
 max-width: 200px; /* Keeps logos uniform */
 height: auto;
 display: block;
 margin: 0 auto;
mix-blend-mode: multiply;
}