.blog-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

.blog-header h1 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: #7f8c8d;
}

.author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.blog-content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.blog-image {
    margin-bottom: 25px;
}

.blog-image img {
    width: 100%;
    border-radius: 8px;
}

.article-text h2 {
    color: #2c3e50;
    margin: 25px 0 15px;
    font-size: 1.6rem;
}

.article-text p {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-text ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.article-text li {
    margin-bottom: 8px;
    color: #5a6c7d;
}

.info-box {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 20px;
    margin: 20px 0;
    border-radius: 6px;
}

.pricing-table {
    display: grid;
    gap: 20px;
    margin: 25px 0;
}

.plan {
    padding: 20px;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    background: #fafbfc;
}

.plan h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.price {
    color: #27ae60;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.price-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.price-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1rem;
}

.cta-section {
    text-align: center;
    padding: 30px;
    background: linear-gradient(90deg, #3498db, #2c3e50);
    color: white;
    border-radius: 10px;
    margin: 30px 0;
}

.cta-section h3 {
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #3498db;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .blog-container {
        padding: 15px;
    }
    
    .blog-header h1 {
        font-size: 1.8rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}