body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    background-image: url("World%20Map.svg");
    background-position: center;
    background-size: cover;
   
    height: 100vh;
}

.welcome-container {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #007bff;
}

p {
    margin: 20px 0;
    color: #555;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* General Reset */

/* Footer Styling */
.footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Section Styling */
.footer-section {
    flex: 1 1 250px;
    margin: 15px;
}

.footer-section h2 {
    font-size: 1.5em;
    color: #00b4d8;
    margin-bottom: 10px;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    font-size: 0.9em;
    text-decoration: none;
    margin: 5px 0;
    display: block;
}

.footer-section a:hover {
    color: #00b4d8;
}

/* Social Media Links */
.social-icon {
    display: inline-block;
    margin: 5px;
    padding: 8px 12px;
    border: 1px solid #00b4d8;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    background-color: #00b4d8;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        flex-basis: 100%;
        text-align: center;
    }
}

