* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
    min-height: 100vh;
}

/* Header Styles */
.main-header {
    background: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.main-header.hide {
    transform: translateY(-100%);
}

.logo {
    text-align: center;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

.logo h1 {
    color: #2196f3;
    font-size: 1.8rem;
    margin: 0;
}

.main-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #2196f3;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: all 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 0.8rem 0;
        border-bottom: 1px solid #eee;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-top: 60px; /* Height of the header */
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #64b5f6 0%, #2196f3 100%);
    color: white;
    border-radius: 10px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-subtext {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    margin-top: 2rem;
}

/* About Tool Section */
.about-tool {
    padding: 4rem 0;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.about-tool h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.tool-features {
    list-style: none;
    padding: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.tool-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.tool-features i {
    color: #fd8038;
    font-size: 1.5rem;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #fd8038;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    line-height: 40px;
    margin-bottom: 1rem;
}

.step h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Why Us Section */
.why-us {
    padding: 4rem 0;
    background: #f8f9fa;
    margin-bottom: 3rem;
}

.why-us h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.benefit i {
    font-size: 2.5rem;
    color: #fd8038;
    margin-bottom: 1rem;
}

.benefit h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit p {
    color: #666;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #2c3e50;
}

.faq-trigger:hover {
    background: #f8f9fa;
}

.faq-question {
    font-weight: 500;
}

.faq-content {
    padding: 1.5rem;
    display: none;
    color: #666;
    line-height: 1.6;
}

.faq-content.active {
    display: block;
}

/* Success Stories Section */
.success-stories {
    padding: 4rem 0;
    background: #f8f9fa;
    margin-bottom: 3rem;
}

.success-stories h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.testimonial p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial cite {
    display: block;
    text-align: right;
    color: #fd8038;
    font-style: normal;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fd8038;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Quiz Section */
.quiz-section {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

header p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.start-screen, .quiz-screen, .results-screen {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.question-container {
    margin-bottom: 2.5rem;
}

#question-text {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 500;
    line-height: 1.5;
}

.option {
    background: #f8f9fa;
    padding: 1.2rem;
    margin: 1rem 0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1.1rem;
    color: #333;
}

.option:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.option.selected {
    background: #fd8038;
    color: white;
    border-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.option.selected::before {
    content: "✓";
    font-size: 1.2rem;
    color: white;
    margin-right: 0.5rem;
}

button {
    background: #fd8038;
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin: 1.5rem auto;
    display: block;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

button:hover {
    background: #fd8038;
    transform: translateY(-2px);
}

button.disabled {
    background: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.results-screen {
    text-align: center;
}

#result-text {
    font-size: 1.8rem;
    margin: 2.5rem 0;
    color: #2c3e50;
    line-height: 1.6;
}

#result-text h2 {
    color: #fd8038;
    margin-bottom: 1rem;
    font-size: 2rem;
}

#career-options {
    margin: 3rem 0;
}

.career-option {
    background: #f8f9fa;
    padding: 1.2rem;
    margin: 1rem 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.career-option:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.career-icon {
    font-size: 1.8rem;
    color: #fd8038;
}

@media (max-width: 600px) {
    .container {
        margin: 1rem auto;
        padding: 0 15px;
    }

    header h1 {
        font-size: 2rem;
    }

    #question-text {
        font-size: 1.4rem;
    }

    button {
        width: 100%;
        max-width: 100%;
    }

    .career-option {
        flex-direction: column;
        text-align: center;
    }

    .career-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
}
