body {
    background-color: #f2f2f2;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url('background.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.logo-text {
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
}

.navbar-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.navbar-links li {
    margin-left: 20px;
}

.navbar-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s;
}

.navbar-links a:hover {
    color: #4c00ff;
}

.container, .container2 {
    background-color: rgba(59, 68, 79, 0.6);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 80%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    color: white;
}

.header {
    font-size: 2.5rem;
    font-weight: bold;
    animation: slideIn 1s ease-out;
}

.msg {
    font-size: 1.5rem;
    margin-top: 20px;
}

.contact-section {
    text-align: center;
    padding: 20px 0;
}

.social-links img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
    transition: transform 0.3s;
}

.social-links img:hover {
    transform: scale(1.1);
}

.footer {
    background-color: rgba(59, 68, 79, 0.5);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: auto;
    width: 100%;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .navbar-links {
        flex-direction: column;
        align-items: center;
    }

    .navbar-links li {
        margin: 10px 0;
    }

    .container, .container2 {
        max-width: 90%;
        padding: 15px;
    }

    .header {
        font-size: 2rem;
    }

    .msg {
        font-size: 1.2rem;
    }

    .social-links img {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2em;
    }

    .navbar-links a {
        font-size: 1em;
    }

    .header {
        font-size: 1.5rem;
    }

    .msg {
        font-size: 1rem;
    }

    .social-links img {
        width: 30px;
        height: 30px;
    }
}
