.step {
    margin-bottom: 50px;
}

.step h3 {
    background-color: #4c7437;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

.step-content {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.pdf-downloads, .order-sheets {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.pdf-item, .order-sheet-item {
    text-align: center;
    margin-bottom: 20px;
}

.pdf-item img, .order-sheet-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.application-form {
    background-color: #f0f7eb;
    border: 2px solid #4c7437;
    border-radius: 10px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.application-form h4 {
    color: #4c7437;
    font-size: 24px;
    margin-bottom: 15px;
}

.application-form p {
    font-size: 18px;
    margin-bottom: 20px;
}

.apply-button {
    display: inline-block;
    background-color: #377819;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.apply-button:hover {
    background-color: #4c9c4c;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.apply-button img {
    display: block;
    margin: 0 auto 10px;
}

.apply-button span {
    color: #ffffff;
    display: block;
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .application-form {
        padding: 20px;
    }

    .application-form h4 {
        font-size: 20px;
    }

    .application-form p {
        font-size: 16px;
    }

    .apply-button {
        padding: 10px 20px;
    }

    .apply-button span {
        font-size: 16px;
    }
}

.contact-note {
    text-align: center;
    font-style: italic;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .pdf-downloads, .order-sheets {
        flex-direction: column;
        align-items: center;
    }
}