/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-image: url('financial-bg.jpg'); /* Replace with your background image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Overlay for readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* White overlay with 80% opacity */
    z-index: -1;
}

/* Logo container styles */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo-container img {
    width: 200px; /* Adjust size as needed */
    height: auto;
    max-width: 100%;
}

/* Responsive design */
@media (max-width: 768px) {
    .logo-container img {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .logo-container img {
        width: 120px;
    }
}