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

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

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

/* Why Assessments Matter */
.why-assessments {
    padding: 4rem 2rem;
    background: #1e2536;
    text-align: center;
}

.why-assessments h2 {
    color: #ff015b;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.benefit-item {
    background: #181d2a;
    padding: 1.5rem;
    border-radius: 10px;
    color: #fff;
    text-align: center;
}

/* Assessment Process */
.assessment-process {
    padding: 4rem 2rem;
    background: #181d2a;
    text-align: center;
}

.assessment-process h2 {
    color: #ff015b;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.step {
    background: #1e2536;
    color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    flex: 1 1 250px;
    text-align: center;
    margin: 0.5rem;
}

.step span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #ff015b;
    margin-bottom: 1rem;
}

/* Request Form */
.request-form {
    padding: 4rem 2rem;
    background: #1e2536;
    text-align: center;
}

.request-form h2 {
    color: #ff015b;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.request-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.request-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: bold;
}

.request-form input,
.request-form select,
.request-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.request-form button {
    background: #ff015b;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.request-form button:hover {
    background: #d10048;
}

/* FAQs Section */
.faqs {
    padding: 4rem 2rem;
    background: #181d2a;
    text-align: center;
}

.faqs h2 {
    color: #ff015b;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: #ff015b;
    margin-bottom: 0.5rem;
}

/* Call-to-Action */
.cta {
    background: #ff015b;
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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