/* General page styling */
body {
    font-family: Arial, sans-serif;
    background-color: #2f2e2e;
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
}

h1 {
    margin-top: 20px;
    font-size: 3em;
    color: #c19a6b;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    color: #fff; /* White text color */
}

/* Style for the content sections */
.content-section {
    background-color: transparent; /* Dark background to match the theme */
    padding: 20px;
    border-radius: 0 px;
    box-shadow: none;
    margin-bottom: 20px;
    color: #fff; /* White text color */
}

.content-section p {
    font-size: 1.2em;
    line-height: 1.6;
}

.content-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 10px;
/*    border-radius: 8px;*/
}

/* Mobile responsiveness */
@media (max-width: 767px) {
    .content-section {
        padding: 15px;
    }
}
