body {
    font-family: Arial, sans-serif;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: #e8f5e9;
}

.logo-container {
    background-color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
    max-width: 80%;
    height: auto;
    max-height: 100px;
}

.nav-container {
    background-color: white;
    padding: 15px 10px;
    text-align: center;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow-x: auto;
    white-space: nowrap;
}

.nav-container a {
    color: #000000;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.main-content {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 15px;
}

#quiz-container {
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.section {
    display: none;
}

.section.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    color: #2b402c;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8em;
    line-height: 1.2;
}

h2 {
    color: #2b402c;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5em;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #333;
}

.answers-grid {
    display: grid;
    gap: 0.75rem;
}

.answer-btn {
    background-color: #f8f9fa;
    border: 2px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #2b402c;
    text-align: left;
    width: 100%;
}

.answer-btn:hover {
    background-color: #f0f4f1;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

#progress-bar {
    width: 100%;
    height: 8px;
    background-color: #ddd;
    margin-bottom: 2rem;
    border-radius: 4px;
    overflow: hidden;
}

#progress {
    width: 0;
    height: 100%;
    background-color: #295e2b;
    transition: width 0.3s ease;
}

#result-content {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.result-section {
    margin: 20px 0;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.result-section h4 {
    color: #295e2b;
    font-size: 1.1rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e0e0e0;
}

.examples-list,
.tools-list,
.tips-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.examples-list li,
.tools-list li,
.tips-list li {
    margin: 8px 0;
    padding: 8px 0 8px 24px;
    position: relative;
}

.examples-list li:before,
.tools-list li:before,
.tips-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #295e2b;
}

.lead-magnet-title {
    color: #295e2b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e0e0;
}

.btn {
    background-color: #295e2b;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 10px;
    -webkit-appearance: none;
}

.btn:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

.other-tools {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.other-tools h3 {
    color: #2b402c;
    text-align: center;
    margin-bottom: 20px;
}

.tools-grid {
    display: grid;
    gap: 15px;
    grid-template-columns: 1fr;
}

.tool-link {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    color: #2b402c;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.tool-link:hover {
    background-color: #f0f4f1;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

@media (min-width: 768px) {
    .nav-container a {
        margin: 0 30px;
        font-size: 18px;
    }
    .logo {
        max-width: 300px;
    }
    #quiz-container {
        padding: 30px;
    }
    .main-content {
        padding: 0 20px;
    }
    h1 {
        font-size: 2.2em;
    }
    .btn {
        font-size: 18px;
    }
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .answers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}