body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
}

.header {
    text-align: center;
    padding-top: 8rem;
    background: #a52a2a;
    color: white;
}

.content {
    padding: 1rem 2rem;
    max-width: 900px;
    margin: auto;
}

.block {
    margin-bottom: 3rem;
    text-align: center;

}

.block-inline {
    display: inline-flex;
}

.block p {
    /* font-size: 1.1rem; */
    line-height: 1.6;
    margin-bottom: 1rem;
}

.block .paragraph {
    text-align: justify;
}

.image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Fade-in animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.header-image {
    width: 100%;
    margin-top: 150px;
}

.head-text {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}