body {
    margin: 0;
    padding: 0;
}

.main-container {
    background-color: #040e02;
    width: 100%;
    border-top: rgba(253, 201, 15, 0.15) 1px solid;
    display: flex;
    justify-content: center;
}

.content-container {
    width: 100%;
    max-width: 960px;
    padding: 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}

.content-container-contact {
    width: 100%;
    max-width: 1024px;
    padding: 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row; /* changed from column to row */
    justify-content: space-between; /* this will put space between your text and image */
    align-items: center;
    overflow-y: auto;
    z-index: 9999;
}

.text-block {
    width: 100%;
    text-align: center;
}

.static-page-text {
    color: #ffffff;
    font-size: 0.9em;
    font-weight: 400;
    padding-bottom: 20px;
    font-weight: 400;
    font-family: "Lora", "SemiBold";
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.4em;
    max-width: 100%;
}

.image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.image {
    max-width: 100%;
    height: auto;
}

.header-text {
    padding: 0px 75px;
    font-size: 1.6em;
    line-height: 1.7em;
    font-weight: 300;
    font-variant: small-caps;
    text-align: center;
    font-family: "Lora", "SemiBold";
    color: white;
 }

.mail-to {
    color: #f5cb47;
}

.content-container-about {
    width: 100%;
    max-width: 960px;
    padding: 50px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
}

.text-block-about {
    width: 100%;
    text-align: left; /* align text to the left */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* align items to the start */
}

figure {
    margin: 20px 0; /* space above and below each figure */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* center items vertically */
}

figcaption {
    max-width: 50%;
}

.static-page-text-about {
    color: #ffffff;
    font-size: 0.9em;
    font-weight: 400;
    padding-bottom: 20px;
    font-weight: 400;
    font-family: "Lora", "SemiBold";
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.4em;
    max-width: 100%; /* same as the image width */
    margin-bottom: 30px; /* adjust as needed */
}

.image-about {
    max-width: 100%; /* same as the text width */
    height: auto;
    margin-bottom: 30px; /* adjust as needed */
    border-width: 8px;
    border-style: solid;
    border-color: #091405;
    border-radius: 20px;
}

.w-100 {
    width: 100%;
}