.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .content-grid {
        flex-direction: row;
        align-items: flex-start;
    }

    .left-column {
        flex: 0 0 70%;
        max-width: 70%;
    }

    .right-column {
        flex: 0 0 30%;
        max-width: 30%;
        position: relative;
    }
    
    /* Simple sticky sidebar */
    .sidebar-sticky {
        position: sticky;
        top: 2rem;
        align-self: flex-start;
        width: 100%;
    }
}

/* Left column content */
.blog-main-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.blog-content-wrapper {
    padding: 2rem;
}

/* Form and button consistency */
.analyst-btn {
    width: 100%;
    background-color: #4f46e5;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border: none;
    cursor: pointer;
}

.analyst-btn:hover {
    background-color: #4338ca;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* Contact box */
.contact-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.contact-box h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-details {
    background: #f9fafb;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.contact-phone {
    color: #4f46e5;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.contact-email {
    color: #4f46e5;
    font-weight: 500;
    text-decoration: none;
}

.contact-email:hover {
    text-decoration: underline;
}

.separator {
    margin: 0.5rem 0;
    color: #6b7280;
}

/* Blog content styles */
.blog-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.blog-category {
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-date {
    background: #eef2ff;
    color: #4f46e5;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.blog-image {
    max-width: 100%;
    height: auto;
    max-height: 25rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    width: 100%;
}

/* Tabs */
.tabs-container {
    border-bottom: 1px solid #e5e7eb;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.tabs-nav {
    display: flex;
    gap: 2rem;
    min-width: max-content;
}

.tab-btn {
    padding: 1rem 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: #4f46e5;
    border-bottom-color: #d1d5db;
}

.tab-btn.active {
    border-bottom-color: #4f46e5;
    color: #4f46e5;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}