footer {
    background-color: #003655;
}

/* Footer container */
.footer-container {
    width: 100%;
    margin: auto;
    padding: 5px 10px; /* reduce padding slightly */
}

/* Row 1 → logo only */
.footer-row-1 {
    display: flex;
    justify-content: center;
    margin-bottom: 10px; /* reduce spacing below logo */
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px; /* smaller gap between image and text */
    font-size: 24px; /* slightly smaller font */
    font-weight: 600;
    color: rgb(236, 241, 250);
}

.footer-logo img {
    width: 80px; /* smaller logo */
    height: auto;
}

/* Copyright at full width */
.copyright {
    width: 100%;
    background-color: #003655;
    border-top: 1px solid #423940;
    padding: 8px 0; /* reduced padding */
    text-align: center;
}

.copyright p {
    margin: 0;
    font-size: 12px; /* slightly smaller font */
    font-weight: 400;
    color: rgb(236, 241, 250);
}
