* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}

header {
    background-color: #f4ef1c;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

header .logo h1 {
    font-size: 24px;
    color: #000;
}

header .logo span {
    color: red;
}

header .user-info {
    display: flex;
    align-items: center;
}

header .user-info p {
    margin-right: 20px;
    font-weight: bold;
}

header .user-info a {
    color: #fff;
    background-color: red;
    padding: 5px 10px;
    text-decoration: none;
    border-radius: 5px;
    margin-left: 10px;
}

main {
    max-width: 1200px;
    margin: 0 auto; /* Removed top and bottom margin */
    text-align: center;
}

.options {
    display: flex;
    justify-content: space-around;
    margin-bottom: 0; /* Removed bottom margin */
}

.options .option {
    background-color: black;
    padding: 10px;
    border-radius: 10px;
    width: 20%;
}

.options .option img {
    width: 100%;
    height: auto;
}

.options .option p {
    background-color: black;
    color: white;
    text-decoration: none;
    padding: 10px 0;
    margin-top: 0px;
    border-radius: 5px;
    font-weight: bold;
    white-space: nowrap; /* Prevent text from wrapping */
}

.option a {
    text-decoration: none;
}

.info {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.info p {
    margin-bottom: 10px;
    font-size: 18px;
}

.info .highlight {
    color: red;
    font-weight: bold;
}

.partners {
    color: red;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 0; /* Removed top margin */
    margin-bottom: 0; /* Removed bottom margin */
}

.partners a {
    margin: 10px;
    height: 50px;
    text-decoration: none;
}

.partnersa {
    color: white;
    font-weight: bold;
    font-size: 20px;
    background: red;
    padding: 10px;
    border-radius: 10px;
}

.partnersb {
    color: white;
    font-weight: bold;
    font-size: 20px;
    background: red;
    padding: 10px;
    border-radius: 10px;
}

.partnersc {
    color: white;
    font-weight: bold;
    font-size: 20px;
    background: red;
    padding: 10px;
    border-radius: 10px;
}

.footer {
    border-top: 3px solid black;
    background-color: #fff;
    color: #fff;
    padding: 0; /* Removed top and bottom padding */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-social-icons {
    margin-top: 20px;
}

.footer-social-icons a {
    color: #fff;
    font-size: 20px;
    margin-right: 15px;
    text-decoration: none;
}

.footer-column {
    flex: 1;
    margin-left: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 20px 0;
    margin-left: 20px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-size: 14px;
}

.footer-bottom a {
    color: #e53935;
    text-decoration: none;
}

.footer-payment-icons img {
    width: 40px;
    margin-right: 10px;
}

/* General mobile adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo,
    .footer-column {
        margin-left: 0;
        margin-bottom: 30px;
    }

    .footer-logo {
        max-width: 100%;
    }

    .footer-logo img {
        max-width: 80%;
        margin: 0 auto;
    }

    .footer-column h3 {
        font-size: 16px;
    }

    .footer-column ul li a {
        font-size: 14px;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        margin-top: 20px;
    }

    .footer-bottom p {
        margin-bottom: 20px;
    }

    .footer-payment-icons img {
        width: 35px;
        margin: 0 5px;
    }

    .options {
        flex-wrap: wrap;
        margin-bottom: 0; /* Removed bottom margin for tablets */
    }

    .options .option {
        width: 45%;
        margin: 0 0 20px 0;
    }

    .user-info {
        flex-direction: column;
    }

    .user-info p,
    .user-info a {
        margin-bottom: 10px;
    }

    main {
        margin: 0 auto; /* Removed top margin for tablets */
    }

    .partners {
        margin-top: 0; /* Removed top margin */
        margin-bottom: 0; /* Removed bottom margin */
    }

    header {
        padding: 5px 10px;
    }
}

/* Smaller mobile adjustments (max-width: 480px) */
@media (max-width: 480px) {
    .footer-logo h2 {
        font-size: 22px;
    }

    .footer-logo img {
        max-width: 60%;
        margin: 0 auto;
    }

    .footer-column h3 {
        font-size: 14px;
    }

    .footer-column ul li a {
        font-size: 12px;
    }

    .footer-social-icons a {
        font-size: 18px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .footer-payment-icons img {
        width: 30px;
    }

    .info img {
        width: 200px;
    }

    header {
        flex-direction: column;
    }

    .user-info p {
        margin-bottom: 10px;
    }

    main {
        margin: 0 auto; /* Removed top margin for phones */
    }

    .options {
        margin-bottom: 0; /* Removed bottom margin for phones */
    }

    .option {
        margin-top: 0px;
    }

    .options .option p {
        font-size: 15px;
        padding: 6px 0;
    }

    .partners {
        margin-top: 0; /* Removed top margin entirely */
        margin-bottom: 0; /* Removed bottom margin */
    }

    header {
        padding: 3px 5px;
    }
}