.decision-tree-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.decision-tree-section {
    display: none;
    text-align: center;
}

.decision-tree-section.active {
    display: block;
}

/* Start Screen Styles */
.start-screen {
    padding: 4rem 2rem;
    text-align: center;
}

.finder-title {
    color: #000066;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.main-title {
    font-size: 48px;
    color: #1d2327;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.intro-text {
    font-size: 20px;
    color: #50575e;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.progress-indicator {
    margin-bottom: 3rem;
}

.step-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #50575e;
    font-size: 16px;
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    right: -1rem;
    width: 1rem;
    height: 2px;
    background: #f0f0f1;
}

.dot:last-child::after {
    display: none;
}

.dot.active {
    background: #CDF9FC;
    color: #000066;
}

.start-button {
    background-color: #CDF9FC;
    color: #000066;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.start-button:hover {
    background-color: #b5f0f4;
    transform: translateY(-2px);
}

/* Question Styles */
.question-container {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.question-container h3 {
    font-size: 28px;
    color: #1d2327;
    margin-bottom: 1rem;
}

.question-description {
    font-size: 16px;
    color: #50575e;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.options-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.option-card {
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.option-card:hover {
    border-color: #11D9CC;
    transform: translateY(-2px);
}

.option-button {
    width: 100%;
    height: 100%;
    background: none;
    border: none;
    padding: 30px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.option-button h4 {
    color: #1d2327;
    font-size: 20px;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.option-button p {
    color: #50575e;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Navigation Buttons */
.navigation-buttons {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-start;
    padding-left: calc((100% - 1000px) / 2 + 20px);
}

.nav-button {
    background: none;
    border: none;
    color: #666;
    padding: 12px 0;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-button::before {
    content: '←';
    margin-right: 8px;
    font-size: 18px;
}

.nav-button:hover {
    color: #000;
}

/* Result Styles */
.result-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px;
    max-width: 800px;
    margin: 2rem auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.result-title {
    color: #1d2327;
    font-size: 32px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.result-description {
    color: #50575e;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.result-buttons {
    margin-bottom: 1.5rem;
}

.learn-more-button {
    display: inline-block;
    background-color: #CDF9FC;
    color: #000066;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.learn-more-button:hover {
    background-color: #b5f0f4;
    text-decoration: none;
    color: #000066;
    transform: translateY(-2px);
}

.restart-button {
    display: inline-block;
    background: none;
    border: none;
    color: #50575e;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-decoration: underline;
    width: 100%;
}

.restart-button:hover {
    color: #1d2327;
    background: none;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 32px;
    }
    
    .intro-text {
        font-size: 18px;
    }
    
    .options-container {
        grid-template-columns: 1fr;
    }
    
    .question-container h3 {
        font-size: 24px;
    }
    
    .option-button h4 {
        font-size: 18px;
    }
    
    .dot {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .navigation-buttons {
        padding-left: 20px;
    }
} 