
.blog-header {
    text-align: center;
    /* margin-bottom: 40px; */
    padding-top: 60px ;
    color: white;
    /* border-radius: 15px; */
}
.blog-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 20px;
}
.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
     /* margin-top: 150px; */
    /* margin-bottom: 15px; */
    line-height: 1.2;
    max-width:1250px;
    margin:150px auto 15px auto 

}

.blog-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    /* margin: 20px 0 30px 0; */
    padding-bottom: 30px;
    font-size: 0.95rem;
    
    opacity: 0.9;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.blog-content h2 {
    color: #0189ff;
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    font-weight: 600;
}

.blog-content h3 {
    color: #0189ff;
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content ul, .blog-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-content li {
    margin-bottom: 10px;
}

.table-of-contents {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #2c5530;
}

.table-of-contents h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin: 8px 0;
}

.table-of-contents a {
    color: #0189ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: #0189ff;
    text-decoration: underline;
}

.cta-section {
    background: #191514;
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.cta-section h3 {
    color: white;
    margin-bottom: 15px;
}

.btn-cta {
    background: white;
    color: #0189ff;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin: 10px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #f8f9fa;
    color: #0189ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.blog-content .permit-info li {
    line-height: normal;
    margin-bottom: 0;
    padding: 0;
}


@media (max-width: 768px) {
    .blog-header {
        padding-top: 20px; /* Reduce space above header */
    }

    .blog-title {
        margin: 110px auto 10px auto;
        font-size: 1.5rem; 
    }

    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .blog-content {
        font-size: 1rem;
    }
    
    .blog-container {
        padding: 15px;
    }
}


