/* FreeGuideTo.com - Clean, Professional Styling */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    line-height: 1.6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    background-color: #fff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.logo {
    height: 40px;
    width: auto;
    margin-right: 12px;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #2563eb;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    margin-bottom: 3rem;
    border-radius: 12px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Guides Section */
.guides-section {
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.guide-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.guide-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.guide-title {
    margin-bottom: 1rem;
}

.guide-title a {
    text-decoration: none;
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.guide-title a:hover {
    color: #2563eb;
}

.guide-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-guide-btn {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.read-guide-btn:hover {
    background: #1d4ed8;
}

/* CTA Section */
.cta-section {
    background: #f8fafc;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
}

.feature h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #64748b;
}

/* Guide Article Styles */
.guide-article {
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #64748b;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.guide-header {
    margin-bottom: 3rem;
    text-align: center;
}

.guide-header h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.guide-intro {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
}

.guide-content {
    margin-bottom: 3rem;
}

.guide-section {
    margin-bottom: 3rem;
}

.guide-section h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.guide-section h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.guide-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #374151;
}

.guide-section ul,
.guide-section ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.guide-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #374151;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.strategy-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.strategy-item h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.strategy-item p {
    color: #64748b;
    margin-bottom: 0;
}

.next-steps-cta {
    background: #eff6ff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #bfdbfe;
    margin: 2rem 0;
}

.next-steps-cta h3 {
    color: #1e40af;
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.next-steps-cta p {
    color: #1e40af;
    margin-bottom: 0;
}

/* Guide Footer */
.guide-footer {
    border-top: 1px solid #e2e8f0;
    padding-top: 2rem;
    margin-top: 3rem;
}

.guide-navigation {
    margin-bottom: 2rem;
}

.back-to-guides {
    display: inline-block;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.back-to-guides:hover {
    text-decoration: underline;
}

.guide-sharing {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 8px;
}

.guide-sharing h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.guide-sharing p {
    color: #64748b;
    margin-bottom: 0;
}

/* Related Guides */
.related-guides {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.related-guides h2 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.related-guides-list {
    display: grid;
    gap: 1rem;
}

.related-guide {
    display: block;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    border: 1px solid #e2e8f0;
}

.related-guide:hover {
    background: #eff6ff;
    border-color: #2563eb;
}

.related-guide h3 {
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.related-guide p {
    color: #64748b;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    background: #1e293b;
    color: #e2e8f0;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .guides-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .guide-card {
        padding: 1.5rem;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-header h1 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .guide-header h1 {
        font-size: 1.8rem;
    }
    
    .main-nav {
        gap: 1rem;
    }
}
