/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lexend', sans-serif;
    height: 100%;
    background: url('bg.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

/* Container Styles */
.container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    background-color: rgba(0, 0, 0, 0.5); /* Black background with 50% opacity */
    padding: 20px;
    text-align: center;
    width: 50%; /* 50% width on larger screens */
    max-width: 800px; /* Max width for larger screens */
    border-radius: 10px;
}

h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

p {
    font-size: 1.1rem;
}

/* Section Styles */
.section {
    padding: 40px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    margin: 20px 0;
    width: 80%;
    max-width: 900px;
    border-radius: 8px;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.section p {
    font-size: 1.1rem;
}

/* Contact Form Styles */
.contact-form-container {
    padding: 40px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    width: 80%;
    max-width: 900px;
    border-radius: 8px;
    margin-top: 40px;
}

.contact-form-container h2 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form label {
    margin-top: 15px;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 80%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.contact-form button {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .content {
        width: 95%; /* 95% width on mobile */
    }

    .section,
    .contact-form-container {
        width: 95%;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
    }
}
