/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f6f9;
    color: #333;
}

/* Internet Speed Info Section */
.internet-speed-info {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    margin: auto;
    margin-top: 10px;
    max-width: 900px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.internet-speed-info h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    margin-top: 0;
}

.internet-speed-info p {
    font-size: 1.2rem;
    margin: 15px 0;
    line-height: 1.8;
    color: #e3f2fd;
}

/* Speed Calculation Section */
.speed-calculation {
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    margin: auto;
    text-align: center;
    margin-bottom: 20px;
}

.speed-calculation h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a237e;
}

.question-container {
    margin-top: 20px;
}

/* Questions */
.question {
    margin: 20px 0;
}

.hidden {
    display: none;
}

/* Options Styling */
.options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.options button {
    background: #1e88e5;
    color: #fff;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.options button:hover {
    background: #1565c0;
    transform: translateY(-2px);
}

/* Final Speed Display */
.result {
    margin-top: 30px;
    text-align: center;
}

.speed-display {
    font-size: 2.5rem;
    font-weight: bold;
    background: #4caf50;
    border-radius: 10px;
    padding: 20px 40px;
    color: #fff;
    display: inline-block;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .internet-speed-info h1,
    .speed-calculation h1 {
        font-size: 2rem;
    }

    .internet-speed-info p,
    .speed-calculation p {
        font-size: 1rem;
    }

    .options button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .speed-display {
        font-size: 2rem;
        padding: 15px 30px;
    }
}
.plan-list{
    padding-inline-start: 0px;
}