body{
    background-color: #f2f2f2;
}

.apply-section {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 10px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.apply-section h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
}

.apply-section p {
    font-size: 16px;
}

.apply-section span {
    color: #3498db;
}

.apply-section form {
    display: flex;
    flex-direction: column;
}

.apply-section label {
    margin-top: 10px;
    font-size: 16px;
}

.apply-section input, textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.apply-section textarea {
    resize: vertical;
}

.apply-section button {
    margin-top: 20px;
    padding: 10px;
    background-color: #f39c12;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.apply-section button:hover {
    background-color: #d35400;
}

#opportunity-description {
    margin-bottom: 20px;
    font-weight: bold;
}

@media(max-width:860px){
    .apply-section h1 {
        font-size: 26px;
    }

    .apply-section p {
        font-size: 14px;
    }

    .apply-section label {
        font-size: 14px;
    }

    .apply-section input, textarea {
        font-size: 14px;
    }

    .apply-section button {
        font-size: 14px;
    }
}