@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1rem;
    background: #f9fafb;
    margin-bottom: 2rem;
}

.hero-section {
    position: relative;
    margin-bottom: 0;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-text-section {
    background: #fff;
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 0.5rem;
}

.hero-text-section h1 {
    font-size: 2.5rem;
    color: #005b2e;
    margin: 0 0 0.75rem 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.hero-text-section p {
    font-size: 1.3rem;
    color: #333;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.application-text {
    text-align: center;
    padding: 0.5rem 0;
    font-size: 1.2rem;
    color: #333;
    font-family: 'Roboto', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.application-text p {
    margin: 0.5rem 0;
}

.application-form-section {
    display: flex;
    gap: 0;
    padding: 0;
}

.form-image {
    flex: 1;
    max-width: 500px;
    height: 550px;
}

.form-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.form-container {
    flex: 1;
    background: #fff;
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    height: 485px;
    width: 500px;
}

.form-step {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-step h2 {
    font-size: 1.8rem;
    color: #005b2e;
    margin: 0 0 1rem 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.3rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e8f0ee;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #005b2e;
}

.form-button {
    background: #005b2e;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin: 0.5rem auto;
    width: fit-content;
    animation: pulse 1.5s infinite;
}

.form-button:hover {
    background: #003018;
    transform: scale(1.05);
}

.form-button.no-pulse {
    animation: none;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.form-summary {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-summary p {
    font-size: 1.1rem;
    color: #333;
    margin: 0.5rem 0;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #e8f0ee;
    padding-bottom: 0.5rem;
}

.form-summary p strong {
    color: #005b2e;
    font-weight: 700;
    flex: 0 0 40%;
}

.form-summary p span {
    color: #333;
    flex: 0 0 60%;
    text-align: right;
}

.form-step[data-step="2"] .form-button,
.form-step[data-step="3"] .form-button {
    padding: 0.6rem 1.5rem;
    font-size: 1.1rem;
    margin: 0.5rem 0.75rem;
    display: inline-block;
    animation: none;
}

.form-step[data-step="3"] .form-button {
    margin: 1rem 0.75rem 0;
    display: inline-block;
}

.form-step[data-step="3"] .form-button-container {
    text-align: center;
}

@media (max-width: 768px) {
    .application-form-section {
        flex-direction: column;
        gap: 1rem;
    }
    .form-image {
        max-width: 100%;
        height: 300px;
    }
    .form-container {
        height: auto;
        width: 100%;
    }
}