.service-selection-container {
    text-align: center;
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-question {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.service-options {
    display: flex;
    justify-content: center;
}

.service-option, .check-availability-btn {
    padding: 25px 50px;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0 20px; /* Added margin for spacing */
}

.service-option:hover, .check-availability-btn:hover {
    background-color: #0056b3;
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.great-news-message {
    font-size: 24px;
    color: #28a745;
    margin-bottom: 20px;
    font-weight: bold;
}

.router-options, .battery-options {
    margin-bottom: 30px;
}

.router-options select, .battery-options select {
    font-size: 18px;
    padding: 10px;
    width: 100%;
    max-width: 300px;
    margin: 10px 0;
}

.divider {
    border-top: 2px solid #ccc;
    margin: 20px 0;
}

.router-description, .battery-description {
    text-align: left;
    margin-bottom: 30px;
}

.router-description h4, .battery-description h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.router-description ul, .battery-description ul {
    padding-left: 20px;
}

.router-description li, .battery-description li {
    margin-bottom: 10px;
}

.total-cost {
    font-size: 24px;
    margin-bottom: 30px;
}

.schedule-install-btn {
    padding: 20px 40px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background-color: #28a745;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.schedule-install-btn:hover {
    background-color: #218838;
    transform: translateY(-5px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .service-options {
        flex-direction: column;
        align-items: center;
    }
    .service-option, .check-availability-btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }
    .router-options select, .battery-options select {
        width: 100%;
        max-width: 100%;
    }
}
