/* Basic reset scoped to the container */
.zambian-biz-guide *,
.zambian-biz-guide *::before,
.zambian-biz-guide *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base font/line-height applied to the wrapper or container */
/* Removed body styles to avoid conflicts with WordPress theme */
.zambian-biz-guide {
    /* background-color: white; Keeping the WP body background */
    color: #333; /* Apply base text color inside the wrapper */
    line-height: 1.6; /* Apply base line-height inside the wrapper */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Apply font inside the wrapper */
}


.zambian-biz-guide .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.zambian-biz-guide header {
    text-align: center;
    margin-bottom: 40px;
}

.zambian-biz-guide h1 {
    color: #2b35a0;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.zambian-biz-guide .subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.zambian-biz-guide .key-takeaway {
    background-color: #2b35a0;
    color: white;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.zambian-biz-guide .key-takeaway h2 {
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: inherit; /* Inherit white color from parent */
}

.zambian-biz-guide .key-takeaway p {
    font-size: 1.3rem;
    font-weight: 500;
    color: inherit; /* Inherit white color from parent */
}

.zambian-biz-guide .tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
    flex-wrap: wrap; /* Allow tabs to wrap on smaller screens */
}

.zambian-biz-guide .tab {
    padding: 15px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
    margin-right: 5px;
    transition: all 0.3s ease;
    flex-grow: 1; /* Allow tabs to grow to fill space */
    text-align: center;
}

@media (max-width: 600px) {
     .zambian-biz-guide .tab {
         flex-basis: 100%; /* Stack tabs vertically on very small screens */
         margin-right: 0;
         margin-bottom: 5px;
         border-radius: 5px;
         border-bottom: 1px solid #ddd;
     }
     .zambian-biz-guide .tab.active {
         border-bottom: 1px solid #2b35a0;
     }
}


.zambian-biz-guide .tab:hover {
    background: #e9e9e9;
}

.zambian-biz-guide .tab.active {
    background: #2b35a0;
    color: white;
    border-color: #2b35a0;
}

.zambian-biz-guide .tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.zambian-biz-guide .tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.zambian-biz-guide .comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.zambian-biz-guide .option {
    flex: 1;
    min-width: 300px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zambian-biz-guide .option:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.zambian-biz-guide .option h3 {
    color: #2b35a0;
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-bottom: 2px solid #2b35a0;
    padding-bottom: 10px;
}

.zambian-biz-guide .option.website {
    border-top: 5px solid #2b35a0;
}

.zambian-biz-guide .option.facebook {
    border-top: 5px solid #4267B2;
}

.zambian-biz-guide .pros-cons {
    margin-top: 20px;
}

.zambian-biz-guide .pros-cons h4 {
    margin-bottom: 10px;
    color: #555;
    font-size: 1.2rem;
}

.zambian-biz-guide .pros-cons ul {
    list-style: none;
    padding: 0;
}

.zambian-biz-guide .pros-cons li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.zambian-biz-guide .pros-cons li:before {
    content: attr(data-icon); /* Use data-icon for bullet */
    position: absolute;
    left: 0;
    top: 0;
    color: #2b35a0; /* Default color */
    font-weight: bold;
}

.zambian-biz-guide .pros-cons h4:nth-of-type(2) + ul li:before { /* Style for cons */
     color: #e74c3c; /* Red for cons */
}


.zambian-biz-guide .feature-list {
    margin-top: 15px;
}

.zambian-biz-guide .feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}

.zambian-biz-guide .feature i {
    margin-right: 10px;
    color: #2b35a0; /* Default color */
    font-size: 1.2rem;
    flex-shrink: 0;
    font-style: normal; /* Ensure icons aren't italicised if using text */
}

.zambian-biz-guide .feature-text {
    flex: 1;
}

.zambian-biz-guide .feature-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.zambian-biz-guide .toggle-container {
    margin: 20px 0;
}

.zambian-biz-guide .toggle {
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.zambian-biz-guide .toggle-header {
    background: #2b35a0;
    color: white;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s ease;
}

.zambian-biz-guide .toggle-header:hover {
    background: #363fa8;
}

.zambian-biz-guide .toggle-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease; /* Transition padding as well */
    padding: 0 20px; /* Initial padding is 0 */
}

.zambian-biz-guide .toggle-content.open {
    max-height: 1000px; /* Needs to be large enough to accommodate content */
    padding: 20px; /* Padding when open */
}


.zambian-biz-guide .toggle-arrow {
    transition: transform 0.3s ease;
    font-size: 1.2em;
}

.zambian-biz-guide .toggle.active .toggle-arrow {
    transform: rotate(180deg);
}

.zambian-biz-guide .strategy {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.zambian-biz-guide .strategy h2 {
    color: #2b35a0;
    margin-bottom: 20px;
    text-align: center;
}

.zambian-biz-guide .step {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.zambian-biz-guide .step-number {
    background: #2b35a0;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.zambian-biz-guide .step-content {
    flex: 1;
}

.zambian-biz-guide .step-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.zambian-biz-guide .quiz-container {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.zambian-biz-guide .quiz-container h2 {
    color: #2b35a0;
    margin-bottom: 20px;
    text-align: center;
}

.zambian-biz-guide .quiz-question {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ccc;
}
.zambian-biz-guide .quiz-question:last-child {
     border-bottom: none;
     margin-bottom: 0;
     padding-bottom: 0;
 }


.zambian-biz-guide .quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .zambian-biz-guide .quiz-options {
        grid-template-columns: 1fr;
    }
}

.zambian-biz-guide .quiz-option {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none; /* Prevent text selection */
}

.zambian-biz-guide .quiz-option:hover {
    border-color: #2b35a0;
    background: #f0f2ff;
}

.zambian-biz-guide .quiz-option.selected {
    border-color: #2b35a0;
    background: #e1e4ff;
    font-weight: 600;
}

.zambian-biz-guide .quiz-result {
    display: none;
    padding: 20px;
    background: #e1e4ff;
    border-radius: 6px;
    margin-top: 20px;
    border-left: 5px solid #2b35a0;
    animation: fadeIn 0.5s ease;
}

.zambian-biz-guide .quiz-result.visible {
    display: block;
}

.zambian-biz-guide .quiz-button {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    padding: 15px 30px;
    background: #2b35a0;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.zambian-biz-guide .quiz-button:hover {
    background: #363fa8;
    transform: translateY(-2px);
}


.zambian-biz-guide .cta {
    background: #2b35a0;
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.zambian-biz-guide .cta h2 {
    margin-bottom: 15px;
    color: inherit; /* Inherit white color from parent */
}
.zambian-biz-guide .cta p {
     color: inherit; /* Inherit white color from parent */
}


.zambian-biz-guide .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.zambian-biz-guide .cta-button {
    padding: 15px 30px;
    background: white;
    color: #2b35a0;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.zambian-biz-guide .cta-button:hover {
    background: #f0f2ff;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.zambian-biz-guide .conclusion {
    border-left: 5px solid #2b35a0;
    padding: 20px;
    background: #f9f9f9;
    margin: 40px 0;
}

.zambian-biz-guide .conclusion h2 {
    color: #2b35a0;
    margin-bottom: 15px;
}

.zambian-biz-guide footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    color: #777;
}

.zambian-biz-guide .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #f5f5f5;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.zambian-biz-guide .icon svg {
    width: 40px;
    height: 40px;
    fill: #2b35a0;
}

.zambian-biz-guide .zambia-context {
    /* Placeholder image URL - replace with a real one if desired */
    background: linear-gradient(rgba(43, 53, 160, 0.9), rgba(43, 53, 160, 0.9)), url('https://via.placeholder.com/1000x600?text=Zambian+Business+Context');
    background-size: cover;
    background-position: center;
    color: white; /* Ensure text is white on this background */
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.zambian-biz-guide .zambia-context h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: inherit; /* Inherit white color from parent */
}

.zambian-biz-guide .context-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.zambian-biz-guide .context-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease;
}

.zambian-biz-guide .context-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.zambian-biz-guide .context-item h3 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: inherit; /* Inherit white color from parent */
}

/* Ensure paragraphs and list items inside .zambian-biz-guide use the base color */
.zambian-biz-guide p,
.zambian-biz-guide li {
    color: #333; /* Default text color */
}

/* Override text color for specific sections where it should be white */
.zambian-biz-guide .key-takeaway p,
.zambian-biz-guide .key-takeaway h2,
.zambian-biz-guide .cta p,
.zambian-biz-guide .cta h2,
.zambian-biz-guide .zambia-context p,
.zambian-biz-guide .zambia-context h2,
.zambian-biz-guide .zambia-context h3 {
    color: white;
}