 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-image: url('https://www.example.com/your-background-image.jpg'); /* Use your image URL */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.contact-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.contact-form-container {
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #f5a623;
}

p {
    font-size: 1rem;
    margin-bottom: 25px;
}


.input-group {
    margin-bottom: 20px;
}

.input-group label {
    font-size: 0.9rem;
    color: #f5a623;
    display: block;
    margin-bottom: 8px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: border-color 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #f5a623;
    outline: none;
}

textarea {
    height: 150px;
    resize: vertical;
}


.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #f5a623;
    color: white;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #e48d16;
}

.submit-btn:active {
    background-color: #cf7e12;
}


@media screen and (max-width: 768px) {
    .contact-form-container {
        padding: 20px;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }
}
