
.progressive-swot-form {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    background: #f8f8f8;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}
.step {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.step.active {
    display: block;
    opacity: 1;
}
label {
    font-weight: bold;
    font-size: 20px;
    display: block;
    margin-bottom: 10px;
    color: #111;
}
textarea,
input[type="text"] {
    width: 100%;
    padding: 12px;
    font-size: 20px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button {
    background-color: #ec1b23;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background-color: #c8121a;
}
.swot-intro {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 5rem;
}
.swot-intro h2 {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}
.swot-subtitle {
    font-size: 16px;
    color: #555;
}
.progress-tracker {
    margin-top: 20px;
}
#step-count {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}
.progress-bar {
    height: 8px;
    background: #ddd;
    border-radius: 4px;
    overflow: hidden;
}
#progress-bar-fill {
    height: 8px;
    width: 20%;
    background-color: #ec1b23;
    transition: width 0.3s ease;
}
#timer {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}
.swot-thankyou {
    text-align: center;
    color: #19727b;
    font-weight: bold;
    font-size: 38px;
    margin: 20px 0;
}
