.blog-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 1rem 2rem 1rem;
}

.blog-header {
    text-align: center;
    margin: 2rem 0 3rem 0;
}

.blog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog-meta {
    color: #666;
}

.blog-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

/* CTA Styles */
.blog-cta {
    margin-top: 4rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-card {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.2s;
}

.cta-card:hover {
    transform: translateY(-5px);
}

.cta-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #666;
}

.cta-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-card p {
    color: #999;
    margin-bottom: 1.5rem;
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #333;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}

.cta-button:hover {
    background: #444;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-card {
        flex: 1 1 100%;
        max-width: none;
    }
} 