.blog-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 20px 60px;
}

.blog-post-header {
    margin-bottom: 40px;
}

.blog-post-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-post-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-post-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.blog-post-content h2 {
    font-size: 1.8rem;
    color: #667eea;
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-post-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-post-content p {
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.blog-post-content ul, .blog-post-content ol {
    margin-left: 30px;
    margin-bottom: 25px;
    color: #555;
}

.blog-post-content li {
    margin-bottom: 10px;
}

.blog-post-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-post-image-container {
    text-align: center;
    margin: 30px 0;
}

.blog-post-image-container figcaption {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.back-to-blog {
    display: inline-block;
    margin-bottom: 30px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-to-blog:hover {
    color: #5568d3;
}

.back-to-blog svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
}

.tip-box {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 20px;
    margin: 25px 0;
    border-radius: 5px;
}

.tip-box h3 {
    margin-top: 0;
    color: #667eea;
}

.product-category {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
}

.product-category h3 {
    margin-top: 0;
    color: #667eea;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.product-category ul {
    margin-top: 15px;
}

.protocol-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.protocol-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.protocol-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.protocol-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.protocol-table tbody tr:hover {
    background: #f8f9fa;
}

.protocol-table tbody tr:last-child td {
    border-bottom: none;
}

.products-cta {
    background: linear-gradient(135deg, #082537 0%, #0d3a52 100%);
    padding: 40px;
    border-radius: 10px;
    margin-top: 50px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.products-cta h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.products-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .blog-post-title {
        font-size: 2rem;
    }
    
    .blog-post-content {
        padding: 25px;
    }
    
    .blog-post-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-post-content h3 {
        font-size: 1.2rem;
    }
    
    .protocol-table {
        font-size: 14px;
    }
    
    .protocol-table th,
    .protocol-table td {
        padding: 8px;
    }
}
