body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #fff; color: #000; }
.container { max-width: 900px; margin: auto; padding: 40px 20px; }
header { background-color: rgb(7, 7, 7); color: #fff; text-align: center; padding: 20px; font-size: 26px; font-weight: bold; text-transform: uppercase; }
.section-title { text-align: center; font-size: 24px; color: #333; margin-bottom: 30px; }
.investment-option { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; }
.investment-option img { width: 45%; border-radius: 10px; }
.investment-text { width: 50%; }
.investment-text h2 { color: #c00; font-size: 20px; margin-bottom: 10px; }
.investment-text p { font-size: 16px; line-height: 1.6; color: #333; }
.reverse { flex-direction: row-reverse; }

footer {
    background: #000;
    color: #fff;
    padding: 40px 20px;
}
.inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}
.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.content section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}
h3, h4 {
    color: white;
}
ul {
    list-style: none;
    padding: 0;
}
ul.alt li a, ul.plain li a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    transition: color 0.3s ease-in-out;
}
ul.alt li a:hover, ul.plain li a:hover {
    color:red;
}
.social-icons {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.social-icons i {
    font-size: 18px;
    color: white;
}
.copyright {
    text-align: center;
    padding: 15px;
    background: #111;
    font-size: 14px;
    border-top: 1px solid #444;
    color: #fff;
}
.copyright a {
    color: red;
    text-decoration: none;
}