/* This is the stylesheet for the customer homepage v1.0 */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    //background-color: #f4f4f9;
    background-image: linear-gradient(to bottom, #0D2B3E, #1C4966);
}
        header, footer {
            background-color: #333;
            color: #fff;
            padding: 20px;
            text-align: center;
        }
        .container {
            padding: 20px;
        }
        .service, .exchange, .faq, .about-us {
            margin: 20px 0;
            padding: 15px;
            border: 1px solid #ccc;
            background-color: #fff;
        }
        .cta {
            text-align: center;
            margin: 20px;
        }
.cta a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    background-color: #357A96;
    padding: 10px 20px;
    border-radius: 5px;
}
        .contact {
            color: #fff;
            text-align: center;
            margin-top: 30px;
        }
.contact a {
    color: cyan;
}
        .images {
            text-align: center;
            margin-top: 30px;
        }
        .images img {
            max-width: 25%;
            height: auto;
            margin: 10px 0;
        }
        .links {
            color: #fff;
            margin-top: 30px;
            text-align: center;
        }
        .links a {
            color: cyan;
            text-decoration: none;
        }