/* Dodajte ta stil v vašo obstoječo CSS datoteko */

/* Osnovni stil za obrazec */
.service-section {
    text-align: center;
    padding: 20px;
}

.service-section h1 {
    margin-bottom: 20px;
}

.service-section form {
    max-width: 600px;
    margin: 0 auto;
}

.service-section label {
    display: block;
    margin-bottom: 10px;
}

.service-section input[type="text"],
.service-section input[type="date"],
.service-section textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.service-section textarea {
    height: 100px;
}

.service-section input[type="submit"] {
    background-color: #98b5e8;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-section input[type="submit"]:hover {
    background-color: #cf292f;
}
