/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Light background for the entire page */
    color: #333;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styling */
header {
    /* Background Image */
    background-image: url('images/header-background.jpg'); /* Path to your background image */
    background-size: cover; /* Ensures the image covers the entire header */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    
    color: white;
    padding: 50px 20px;
    flex: 1;
    position: relative;
    
    /* Overlay for better text readability (optional) */
    /* Uncomment the following lines if you want a dark overlay */
    
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    
}

/* Header Image (Logo) Styling */
.header-image {
    width: 150px; /* Adjust the size as needed */
    height: auto;
    margin-bottom: 20px;
}

/* Header Text Styling */
header h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

header p {
    font-size: 1.2em;
}

/* Buttons Section Styling */
.buttons {
    margin: 30px 0;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    margin: 10px;
    font-size: 1em;
    color: white;
    background-color: #2884FF;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #2897ff;
}

/* Footer Styling */
footer {
    background-color: #333;
    color: white;
    padding: 20px;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 600px) {
    header h1 {
        font-size: 2.5em;
    }

    .button {
        padding: 12px 25px;
        font-size: 0.9em;
    }
}

.header .logo {
    width: 400px;
    height: auto;
  }
  
@media (max-width: 600px) {
.header .logo {
    width: 200px;
}
}

.footer .legal-links {
margin-top: 0.5rem;
font-size: 0.85rem;
}
.footer .legal-links a {
    color: #fff;
    text-decoration: none;
}

.footer .legal-links a:hover {
text-decoration: underline;
}