/* Default Template - Page Style */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.8; 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 20px; 
    background: #f5f5f5; 
    color: #333;
}

.container { 
    background: white; 
    padding: 40px; 
    border-radius: 10px; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
}

h1 { 
    color: #2c3e50; 
    font-size: 2em; 
    margin-bottom: 20px; 
    line-height: 1.3;
}




article { 
    font-size: 1.1em;
}

article p {
    margin-bottom: 15px;
}

article strong {
    color: #667eea;
    font-weight: 600;
}

article ul, article ol {
    margin: 15px 0;
    padding-left: 30px;
}

article li {
    margin-bottom: 8px;
}

.related-questions {
    margin-top: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.related-questions h2 {
    color: #667eea;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.related-questions ul {
    list-style: none;
    padding: 0;
}

.related-questions li {
    margin-bottom: 10px;
}

.related-questions a {
    color: #2c3e50;
    text-decoration: none;
    display: block;
    padding: 10px;
    background: white;
    border-radius: 5px;
    transition: all 0.3s;
}

.related-questions a:hover {
    background: #667eea;
    color: white;
    transform: translateX(5px);
}

/* CTA Block Styles */
.cta-block {
    margin: 40px 0;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cta-style-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.cta-style-secondary {
    background: rgba(102, 126, 234, 0.08);
    border: 2px solid #667eea;
    color: #2d3748;
}

.cta-style-accent {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(245, 87, 108, 0.3);
}

.cta-style-minimal {
    background: transparent;
    border-top: 2px solid #e5e7eb;
    padding-top: 30px;
    color: #2d3748;
}

.cta-title {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-text {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1.05em;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.cta-style-primary .cta-button {
    background: white;
    color: #667eea;
}

.cta-style-primary .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.cta-style-secondary .cta-button {
    background: #667eea;
    color: white;
}

.cta-style-secondary .cta-button:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.cta-style-accent .cta-button {
    background: white;
    color: #f5576c;
}

.cta-style-accent .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.cta-style-minimal .cta-button {
    background: #667eea;
    color: white;
}

.cta-style-minimal .cta-button:hover {
    background: #5568d3;
}

footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 1.5em;
    }
    
    article {
        font-size: 1em;
    }
}


/* Back Navigation */
.top-nav {
    margin-bottom: 20px;
}

.back-link {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    font-size: 0.95em;
    transition: background 0.3s;
}

.back-link:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Quick Answer Box */
.quick-answer {
    background: #f0f7ff;
    border-left: 4px solid #3b82f6;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.quick-answer-title {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    color: #1e40af;
}

.quick-answer p {
    margin: 0;
    line-height: 1.6;
}

/* Detailed Content */
.detailed-content {
    margin: 30px 0;
}

.detailed-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.detailed-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.detailed-content ul, 
.detailed-content ol {
    margin: 15px 0;
    padding-left: 25px;
}

.detailed-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Questions Section */
.questions-section {
    margin: 30px 0;
}

.questions-section h2 {
    margin-bottom: 20px;
    font-size: 1.8em;
}
