/* Apply to the main container */
.main {
    background-color: #135674;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0; /* Removed margin as it may cause undesired scroll */
    z-index: -1;
}

/* Style for the logo image */
img {
    width: 244px;
    height: 244px;
    margin-bottom: 10px;
}

/* Style for the heading text */
.heading_text {
    color: #fff;
    text-align: center;
    margin: 5px 0; /* Adjusted margin for better spacing */
    font-size: 48px;
    line-height: 1.2; /* Used relative unit for better responsiveness */
}

/* Style for the paragraph text */
.paragraph_text {
    margin-top: 15px;
    font-size: 32px;
    color: #fff;
    font-weight: 300;
    text-align: center;
    line-height: 1.36; /* Used relative unit for better responsiveness */
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    background-color: #135674;   
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.header img {
    width: 244px;
    height: 244px;
    margin-right: 20px;
    margin-top: 25px;
}

.content h1 {
    font-size: 38px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 30px;
}

.content h4 {
    font-size: 24px;
    color: #fff;
    margin-top: 40px;
    margin-bottom: 10px;
}

.content p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
    font-size: 18px;
}

/* Updated footer style */
.footer {
    display: flex; /* Enables flexbox layout */
    justify-content: space-between; /* Aligns items to the left and right */
    align-items: center; /* Centers items vertically */
    padding: 10px 20px; /* Adds padding for space */
    background-color: #135674; /* Background color for the footer */
    color: white; /* Text color */
    position: fixed; /* Fixes footer at the bottom */
    bottom: 0;
    width: 100%;
}

/* Style for footer text */
.footer p {
    margin: 0; /* Removes default margin */
    color: white;
    font-size: 16px;
}

/* Style for footer links */
.footer a {
    color: white; /* Link color */
    font-size: large; /* Link font size */
    text-decoration: none; /* Removes underline from links */
    margin-left: 20px; /* Spacing between links */
}
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: white;
    color: #333;
    flex-wrap: wrap; /* Allows wrapping of items on smaller screens */
}

.footer p {
    margin: 0;
    color: #333;
    font-size: 14px; /* Adjust font size for smaller screens */
}

.footer-links {
    display: flex;
    gap: 20px; /* Space between links */
}

.footer-links a {
    color: #333;
    font-size: large;
    text-decoration: none;
    transition: color 0.3s; /* Smooth transition for hover effect */
}

.footer-links a:hover {
    color: #007BFF; /* Change color on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: flex-start; /* Align items to the start on smaller screens */
        padding: 20px; /* Increase padding for smaller screens */
    }

    .footer-links {
        margin-top: 10px; /* Add space between text and links */
        gap: 10px; /* Reduce gap between links */
    }
}

@media (max-width: 480px) {
    .footer p {
        font-size: 12px; /* Further reduce font size on very small screens */
    }

    .footer-links a {
        font-size: medium; /* Adjust link font size */
    }
}
