ul {
    text-decoration: none;
    list-style-type: none;
    margin-bottom: 5px;
}

li {
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

a:visited {
    text-decoration: none;
    color: #ffffff;
}

a:hover {
    color: #D5BA8C;
}

.message, .value, .record, .service-2 {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.message-header, .value-header, .record-header, .service-2-header {
    width: 60%;
    margin-top: 20px;
}

.message-text, .value-text, .service-2-text {
    width: 60%;
    margin: auto;
    margin-bottom: 30px;
}

.value-banner {
    width: 60%;
    border: 1px solid black;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 10px; /* Adding border-radius for rounded corners */
}

.value-banner img {
    width: 100%;
}

.service-2-banner {
    background-color: #004750;
    width: 100%; /* Adjusted width for full width */
    margin-top: 20px;
    display: flex;
    justify-content: space-between; /* Ensuring space between banner sections */
    border-radius: 10px; /* Adding border-radius for rounded corners */
}

.banner-left {
    width: 30%;
    padding: 20px; /* Adding padding for spacing */
}

.banner-left-text {
    margin-top: 20px; /* Adjusted margin for spacing */
    color: #ffffff; /* Ensuring text is visible on dark background */
}

.banner-right {
    width: 70%;
    height: auto;
    background-color: red; /* Temporary color for visualization */
    border-radius: 0 10px 10px 0; /* Adding border-radius for rounded corners */
}
