
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Background */
body {
    font-family: Arial, sans-serif;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow-x: hidden; /* Prevent horizontal scroll */
    background: url('../images/Background.webp') no-repeat center center fixed;
    background-size: cover;
}

/* Container Layout */
.container {
    background: rgba(0, 0, 0, 0.6); /* Transparent black overlay */
    padding: 20px;
    border-radius: 10px;
    width: 100%; /* Relative width for responsiveness */
    max-width: 500px; /* Limit for larger screens */
    text-align: center;
}

/* Logo */
.logo {
    max-width: 150px;
    width: 50%; /* Responsive scaling */
    margin-bottom: 20px;
}

/* Main Content */
main {
    margin-bottom: 20px;
}

    main h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    main p {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

/* Contact Information Layout */
.contact-container {
    display: flex;
    justify-content: space-between; /* Creates the columns */
    gap: 20px; /* Adds spacing between columns */
    text-align: left; /* Aligns text in columns */
    margin-top: 20px;
}

.contact-column {
    flex: 1; /* Ensures both columns are equal width */
}

    .contact-column h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .contact-column p {
        font-size: 1rem;
        margin-bottom: 5px;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column; /* Stack columns vertically on small screens */
        text-align: center;
    }

    .contact-column {
        margin-bottom: 20px;
    }
}

a {
    color: white; /* Make the link text white */
}

footer {
    background-color: #f4f4f4;
    text-align: center;
    width: 100%;
}

.footer-content {
    margin: 0 auto;
    padding: 20px;
}

.footer-text p {
    margin: 10px 0;
    color: #333;
    font-size: 16px;
}

.footer-images {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

    .footer-images img {
        width: 200px;
        height: auto;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
@media (max-width: 768px) {
    .footer-images img {
        max-width: 100px; /* Reduce image size on smaller screens */
    }
}