* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f7fa;
    line-height: 1.7;
    color: #2c3e50;
    overflow-x: hidden !important;
}

.hero {
    /* background: linear-gradient(135deg, rgba(52, 152, 219, 0.95) 0%, rgba(46, 204, 113, 0.95) 100%),
                url('https://images.unsplash.com/photo-1513828583688-c52646db42da?w=1600&q=80') center/cover; */
    background: url('../images/blog/blog-banner.jpg') top center/cover;
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 14px !important;
    margin-bottom: 20px !important;
    opacity: 0.9;
    justify-content: center !important;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.hero h1 {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.post-meta {
    font-size: 15px;
    opacity: 0.95;
}

.post-meta span {
    margin: 0 15px;
}

.container-2 {
    max-width: 1400px;
    margin: -50px auto 60px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.main-content {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease;
}

.featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 40px;
}

.main-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #00783a;
}

.main-content h3 {
    font-size: 22px;
    color: #34495e;
    margin: 30px 0 15px;
}

.main-content p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #555;
}

.main-content ul, .main-content ol {
    margin: 20px 0 20px 25px;
}

.main-content li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

.main-content a {
    color: #00783a;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.main-content a:hover {
    border-bottom-color: #00783a;
}
.resources-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 40px 0;
    border-left: 4px solid #00783a;
}
.resources-section h3 {
    margin-top: 0;
    color: #2c3e50;
}
.faq-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}
.faq-item {
    margin-bottom: 20px;
}
.faq-item:last-child {
    margin-bottom: 0;
}
.faq-question {
    font-weight: bold;
    color: #00783a;
    margin-bottom: 8px;
    font-size: 17px;
}
.faq-answer {
    color: #555;
    padding-left: 15px;
}
.sidebar {
    animation: fadeInRight 0.6s ease;
    top: 20px;
    position: relative;
    height: 100%;
}
.sidebar-wid {              
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}
.sidebar-wid:hover {
    transform: translateY(-5px);
}
.wid-title {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #00783a;
}
.recent-post {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s;
    cursor: pointer;
    margin-bottom: 15px;
}
.recent-post:hover {
    background: #f8f9fa;
    transform: translateX(5px);
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recent-post-image img {
    width: 80px;
    height: 80px;
    fill: white;
    opacity: 0.8;
}

.recent-post-content {
    flex: 1;
}

.recent-post-title {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-date {
    font-size: 13px;
    color: #95a5a6;
}

.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 12px;
}

.categories-list a {
    color: #555;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.categories-list a:hover {
    background: #e3f2fd;
    color: #00783a;
    transform: translateX(5px);
}

.category-count {
    background: #e3f2fd;
    color: #00783a;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background: #f8f9fa;
    color: #555;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #e9ecef;
}

.tag:hover {
    background: #00783a;
    color: white;
    border-color: #00783a;
    transform: translateY(-2px);
}
 .table-container {
overflow-x: auto;
margin: 20px 0;
border-radius: 8px;
border: 1px solid #ddd;
}
.comparison-table {
border-collapse: collapse;
font-size: 15px;
}
.comparison-table th,
.comparison-table td {
border: 1px solid #ccc;
padding: 3px 6px;
text-align: center;
}
.comparison-table tbody tr:nth-child(even) {
background-color: #f9f9f9;
}
.comparison-table thead th {
background-color: #00783a;
color: #fff;
font-weight: 600;
}
.comparison-table td.highlight-cell {
color: #00783a;
font-weight: 600;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .container-2 {
        grid-template-columns: 1fr;
    }

    .main-content {
        padding: 30px;
    }

    .hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .container-2 {
        padding: 0;
        overflow-x: hidden;
    }
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .main-content {
        padding: 25px;
    }

    .featured-image {
        height: 250px;
    }
}