/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 33, 50, 0.6), rgba(0, 0, 0, 0.9)), url('../assets/project_start_background.jpeg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    color: #ff015b;
    font-size: 3.5rem;
}

.hero p {
    color: #fff;
    font-size: 1.5rem;
    margin-top: 1rem;
}

.hero .cta-button {
    margin-top: 2rem;
    background: #ff015b;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.hero .cta-button:hover {
    background: #d10048;
}

/* Form Section */
.project-form {
    padding: 4rem 2rem;
    background: #181d2a;
    color: #fff;
    text-align: center;
}

.project-form h2 {
    color: #ff015b;
    margin-bottom: 2rem;
}

.project-form form {
    max-width: 600px; /* Set maximum width for the form */
    margin: 0 auto; /* Center the form */
    text-align: left; /* Align form labels and fields to the left */
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

input, select, textarea {
    width: 100%;
    max-width: 100%; /* Ensure inputs do not exceed the form width */
    padding: 0.75rem;
    border-radius: 5px;
    border: none;
    background: #1e2536;
    color: #fff;
    font-size: 1rem;
}

textarea {
    resize: none; /* Prevent resizing of the textarea */
}

button {
    background: #ff015b;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
    display: block;
    margin: 1rem auto 0; /* Center the button */
}

button:hover {
    background: #d10048;
}

/* Priority Level Radio Group */
.radio-group {
    display: flex;
    gap: 1rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-form form {
        padding: 0 1rem;
    }

    input, select, textarea {
        padding: 0.6rem;
    }
}
