body {
    background-color: #fff5ec;
    font-family: 'Frank Ruhl Libre', serif;
    margin: 0;
    padding: 0;
}

.top-header {
    background-color: white;
    color: black;
    padding: 15px 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    font-size: 18px;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-header a {
    color: black;
    text-decoration: none;
    transition: color 0.3s;
}

.top-header a:hover {
    color: #ffb4a2;
}

.top-header img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    margin-right: auto;
}

.header-banner {
    background-color: white;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 4px;
}

h1 {
    color: #333;
    font-family: 'Frank Ruhl Libre', serif;
    margin: 0;
    font-size: 50px;
    display: inline-block;
    padding-bottom: 5px;
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background-color: #dd22a8;
}

.media-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.media-content>div:first-child {
    grid-column: 1 / -1;
}

.text-block-with-image {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.media-image-wrapper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #dd22a8;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.media-image-wrapper img {
    width: 100%;
    height: 160px;
    display: block;
    object-fit: cover;
}

.media-text-content {
    width: 100%;
}

.media-text-content h2 {
    color: #333;
    display: inline-block;
    padding-bottom: 5px;
    margin-top: 0;
    font-size: 22px;
    position: relative;
}

.media-text-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #dd22a8;
}

.media-text-content h6 {
    margin: 15px 0 0 0;
    color: #dd22a8;
    font-size: 14px;
    font-weight: bold;
}

.media-text-content p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin: 10px 0 0 0;
}

.site-footer {
    text-align: center;
    padding: 20px;
    color: #666;
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
    background-color: white;
}

.site-footer p {
    margin: 0;
}