body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

footer {
    background-color: #024647;
    padding: 20px 40px;
}

.top-section {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.column {
    flex: 1;
    margin-right: 20px;
}

.column h3 {
    font-size: 16px;
    color: #8fb2ef;
    margin-bottom: 10px;
}

.column ul {
    list-style-type: none;
    padding: 0;
}

.column ul li {
    margin-bottom: 8px;
}

.column ul li a {
    text-decoration: none;
    color: #cfcfcfbf;
    font-size: 14px;
}

.column ul li a:hover {
    color: #ffffffce;
}

.subscribe-column .subscribe-form {
    display: flex;
    margin-bottom: 10px;
}

.subscribe-form input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
    flex: 1;
    font-size: 14px;
}

.subscribe-form button {
    padding: 8px 12px;
    border: none;
    background-color: #333;
    color: white;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.subscribe-form button:hover {
    background-color: #555;
}

.bottom-section {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.payment-section, .connect-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.payment-section h3, .connect-section h3 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #e6e3ffc3;
}

.payment-icons img, .social-icons img {
    margin: 0 5px;
    width: 40px;
    height: auto;
}

.payment-icons img {
    border-radius: 5px;
}

.social-icons img {
    border-radius: 50%;
}