/* Section 6: Business Setup Guidance Styles */
.business-section {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 40px 20px;
}

.business-container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a237e;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-header .subtitle {
    font-size: 0.95rem;
    color: #424242;
    font-weight: 500;
    line-height: 1.5;
}

/* Topics Grid */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.topic-card {
    background: #fff;
    padding: 1.5rem 1.2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.topic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(255, 152, 0, 0.15);
    border-color: rgba(255, 152, 0, 0.3);
}

.topic-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ff9800;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.topic-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.topic-card p {
    font-size: 0.85rem;
    color: #616161;
    line-height: 1.5;
    margin: 0;
}

/* Highlight Box */
.highlight-box {
    background: #ff9800;
    padding: 1.2rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.25);
}

.highlight-box p {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 900px) {
    .business-section {
        height: auto;
        min-height: 100vh;
        padding: 50px 20px;
    }

    .business-container {
        gap: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .section-header .subtitle {
        font-size: 0.9rem;
    }

    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .topic-card {
        padding: 1.3rem 1rem;
    }

    .topic-number {
        font-size: 1.6rem;
    }

    .topic-card h3 {
        font-size: 0.95rem;
    }

    .topic-card p {
        font-size: 0.8rem;
    }

    .highlight-box {
        padding: 1rem 1.5rem;
    }

    .highlight-box p {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .business-section {
        padding: 40px 20px;
    }

    .business-container {
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header .subtitle {
        font-size: 0.85rem;
    }

    .topics-grid {
        grid-template-columns: 1fr;
        gap: 0.9rem;
        width: 100%;
    }

    .topic-card {
        padding: 1.2rem 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .topic-number {
        font-size: 1.5rem;
    }

    .topic-card h3 {
        font-size: 0.9rem;
    }

    .topic-card p {
        font-size: 0.8rem;
    }

    .highlight-box {
        padding: 1rem 1.2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .highlight-box p {
        font-size: 0.85rem;
    }
}
