@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;600;700&display=swap');

body {
    margin: 0;
    font-family: 'Urbanist', sans-serif;
    overflow-x: hidden;
    background-color: #1c1c1c;
    color: #e0e0e0;
}

.header {
    position: relative;
    height: 70vh;
    background: url('background-image.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-attachment: fixed;
}

.header-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.header h1 {
    font-size: 3rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.header p {
    font-size: 1.5rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
    margin: 10px 0;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    font-size: 1rem;
    color: white;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

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

main {
    padding: 20px;
}

.data-section {
    text-align: center;
    margin: 40px 0;
}

.content-limiter {
    max-width: 800px;
    margin: 0 auto;
}

.data-section h2 {
    font-size: 2rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.data-section-modern {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: stretch;
    margin: 40px 0;
}

.data-item {
    text-align: center;
    flex: 1 1 calc(25% - 20px);
    margin: 10px;
    padding: 20px;
    background: #333333;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    max-width: 300px;
}

.logo-placeholder {
    font-size: 3rem;
    margin-bottom: 10px;
}

.data-item h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    color: #ffffff;
}

.data-item p {
    font-size: 1rem;
    color: #b0b0b0;
    font-family: 'Urbanist', sans-serif;
    font-weight: 400;
}

.contact-form {
    position: relative;
    padding: 40px 20px;
    text-align: center;
    margin: 0;
}

.contact-form-photo {
    background: url('contact-background.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 10px;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.contact-form-container {
    background: #333333;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensures full width on mobile */
}

.contact-form h2 {
    font-size: 2rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-form .form-group {
    margin-bottom: 20px;
    width: 100%;
}

.contact-form .form-group label {
    display: block;
    font-size: 1rem;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    color: #ffffff;
}

.contact-form .form-group input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background-color: #444444;
    color: #e0e0e0;
}

.contact-form .form-group input:focus {
    outline: none;
    background-color: #555555;
}

.contact-form button {
    padding: 10px 20px;
    font-size: 1rem;
    color: #ffffff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
}

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

footer {
    text-align: center;
    padding: 20px;
    background-color: #1a1a1a;
    color: #e0e0e0;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .header h1 {
        font-size: 1.5rem;
    }

    .header p {
        font-size: 1rem;
    }

    .data-section h2 {
        font-size: 1.5rem;
    }

    .data-item h3 {
        font-size: 1rem;
    }

    .contact-form h2 {
        font-size: 1.5rem;
    }

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

    .data-section-modern {
        flex-direction: column;
        align-items: center;
    }

    .data-item {
        flex: 1 1 100%;
        margin: 10px 0;
        height: auto;
    }

    .contact-form-container {
        width: 90%; /* Slightly less than full width to provide padding */
        margin: 0 auto; /* Center it horizontally */
    }
}

img {
    max-width: 100%;
    height: auto;
}
