/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    text-align: center;
    padding: 5px;
}

.logo {
    max-width: 100px; /* Make the logo smaller */
    height: auto;
    position: absolute; /* Position it at the top left */
    top: 10px;
    left: 10px;
}

/* Adjusted Banner Section */
.banner {
    text-align: center;
    margin: 110px 0 0 0;
}

.banner-image {
    max-width: 50%;
    border-radius: 8px;
    height: auto;
}

/* Adjusted Cards Section */
.cards {
    max-width: 50%; /* Match the width of the banner */
    margin: 20px auto; /* Center the cards section */
    display: flex;
    justify-content: space-between; /* Distribute the cards at the beginning and end of the section */
    gap: 20px;
}

.card {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Contact Section */
.contact {
    text-align: center;
    margin: 40px 0 100px 0;
}

.contact h2 {
    margin-bottom: 10px;
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: #f8f8f8;
    padding: 10px 0;
    border-top: 1px solid #ddd;
}

.icp {
    font-size: 12px;
    color: #888;
}

.beian {
    font-size: 12px;
    color: #888;
}

.beian-image {
    width: 12px;
}