.content-section {
position: relative;
background: #fff;
padding: 40px;
font-family: Arial, sans-serif;
overflow: hidden;
z-index: 0;
}

/* Watermark Styles */
.content-section::before {
content: "";
position: fixed;
z-index: -1;
opacity: 0.25;
background-image: url("../../images/logo/watermark.png");
background-repeat: no-repeat;
background-position: center;
width: 100%;
height: 100%;
}

/* Main content styles */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2, h3 {
    color: #333;
    font-family: 'Helvetica', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
}

p, ul {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Enhancing section spacing */
section h2 {
    margin-top: 30px;
    font-size: 22px;
    font-weight: 500;
    color: #333;
}

section p {
    margin-bottom: 15px;
}

/* Style links */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.content-section {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}