.typing-guide-container {
    max-width: 1200px;
    margin: 30px 0;
}

.guide-intro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.guide-intro p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.shortcode-card,
.setup-guide-card,
.faq-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: linear-gradient(to right, #f8f9fa, #f1f3f5);
    border-bottom: 2px solid #dee2e6;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 22px;
}

.shortcode-badge {
    background: #3498db;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-family: monospace;
    font-weight: 600;
    white-space: nowrap;
    font-size: 13px;
}

.card-body {
    padding: 25px;
}

.section {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.section h3 {
    margin: 0 0 12px 0;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
}

.section p {
    margin: 0 0 12px 0;
    color: #555;
    line-height: 1.6;
}

.section ul {
    margin: 0;
    padding-left: 20px;
}

.section li {
    margin: 8px 0;
    color: #555;
    line-height: 1.6;
}

.code-block {
    background: #f5f5f5;
    border-left: 4px solid #3498db;
    padding: 12px 16px;
    border-radius: 4px;
    font-family: monospace;
    color: #c7254e;
    margin: 15px 0;
    word-break: break-all;
}

.code-block code {
    color: #c7254e;
    font-weight: 600;
}

.setup-guide-card h2 {
    margin: 0;
    padding: 25px;
    background: linear-gradient(to right, #f8f9fa, #f1f3f5);
    border-bottom: 2px solid #dee2e6;
    color: #2c3e50;
    font-size: 22px;
}

.setup-steps {
    padding: 25px;
}

.setup-steps .step {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.setup-steps .step:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.setup-steps h3 {
    margin: 0 0 12px 0;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
}

.setup-steps p {
    margin: 0 0 12px 0;
    color: #555;
}

.setup-steps ul {
    margin: 0;
    padding-left: 20px;
}

.setup-steps li {
    margin: 8px 0;
    color: #555;
}

@media (max-width: 768px) {
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .card-header h2 {
        font-size: 18px;
    }

    .shortcode-badge {
        align-self: flex-start;
    }
}