.photo img {
    width: 100%;
    height: auto;
}

.description-area {
    width: 100%;
    max-width: 1500px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 30px;
    box-sizing: border-box;
    border-radius: 8px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    color: black;
    padding: 10px;
}

@media (max-width: 768px) {
    .description-area {
        max-width: 1000px;
        font-size: 18px;
        padding: 15px;
    }
}

form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check-label {
    margin: 0;
    font-size: 14px;
}

.highlight {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

.highlight:hover {
    text-decoration: none;
}

.form-control,
.form-select,
.form-check-input,
.btn {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 8px;
}