/* Grundläggande stil för service-sektionen */
.service-section {
    background-color: rgba(253, 246, 227, 0.9); /* Ljus bakgrund med viss genomskinlighet */
    padding: 40px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center; /* Centrera innehållet */
}

.overlay {
    background-color: rgba(253, 246, 227, 0.9); /* Bakgrundsfärgen från index */
    padding: 3rem 1rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

h1 {
font-size: 2.5rem;
font-weight: 700;
}

p.lead {
font-size: 1.25rem;
}  

/* Summary sektionen */
#summary {
    background-color: rgba(253, 246, 227, 0.9); /* Ljus bakgrund */
    padding: 40px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#summary h1 {
    font-size: 2.5rem;
    color: #000;
    font-weight: bold;
    margin-bottom: 20px;
}

#summary p {
    font-size: 1.2rem;
    color: #333;
}

/* Form sektion */
#service-options {
    background-color: rgba(253, 246, 227, 0.9); /* Samma stil som övriga sektioner */
    padding: 40px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;    
}

#service-options input[type="text"],
#service-options input[type="email"] {
    width: 50%;
    padding: 10px;
    margin: 20px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center; /* centrera texten inuti fältet */
}

#service-options h2 {
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

#service-options label {
    display: inline-block;
    margin: 10px 15px;
    font-size: 1rem;
    color: #333;
}

#service-options input[type="radio"] {
    margin-right: 8px;
}

#service-options input[type="text"] {
    width: 50%;
    padding: 10px;
    margin: 20px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#service-options input[type="text"]:focus {
    border-color: #0056b3;
    outline: none;
}

#service-options input[type="email"] {
    width: 50%;
    padding: 10px;
    margin: 20px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#service-options button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#service-options button:hover {
    background-color: #0056b3;
}

#service-options label {
    display: block; /* Varje rubrik på egen rad */
    font-weight: bold; /* Fet stil */
    margin-bottom: 5px; /* Lite luft mellan rubriken och input */
    text-align: left; /* Vänsterställd */
}

#service-options input {
    margin-bottom: 20px; /* Luft mellan varje input-fält */
}

label {
    font-weight: 600;
}

input[type="radio"] {
margin-right: 5px;
}

@media (max-width: 768px) {
h2 {
    font-size: 1.2rem;
}
}

@media (max-width: 576px) {
#service-options input[type="text"],
#service-options input[type="email"] {
    width: 100%;
}
}

.form-group.text-center label {
    display: inline-block;
    margin-right: 20px;
    font-weight: 500;
}

.radio-group {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

#service-options button {
    background-color: #28a745;
    color: #fff;
    padding: 12px 40px;
    width: 200px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
}

form input,
form button {
    width: 100%;
    box-sizing: border-box;
}

/* Allmänt för .service-section */
.service-section {
    background-color: rgba(253, 246, 227, 0.9);
    padding: 40px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* För kolumnerna */
.row > .col-md-6 {
    padding-right: 10px;
    padding-left: 10px;
}

/* Tillägg för formatering på mobil (under 768px) */
@media (max-width: 768px) {
    .col-md-6 {
        width: 100%;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-group label {
    text-align: center;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 60%;
    text-align: center;
}



