.elementor-3357 .elementor-element.elementor-element-b69c279{padding:120px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-953a074 *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e67e22;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

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

/* Header Styles */
.site-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    color: var(--primary-color);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

/* Blog Post Styles */
.blog-content {
    padding: 60px 0;
}

.blog-post {
    background-color: var(--white);
}

.post-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.post-header h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 14px;
}

.separator {
    color: var(--border-color);
}

.featured-image {
    max-width: 1000px;
    margin: 0 auto 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
}

.post-content .lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 30px;
    font-weight: 400;
}

.post-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 50px;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.post-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 35px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.post-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-color);
}

.post-content ul, .post-content ol {
    margin-bottom: 24px;
    padding-left: 30px;
}

.post-content li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-color);
}

.post-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.post-content a:hover {
    border-bottom-color: var(--secondary-color);
}

.post-content .cta-link {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
    border-bottom: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.post-content .cta-link:hover {
    background-color: #d97319;
    transform: translateY(-2px);
}

/* Post Footer */
.post-footer {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background-color: var(--bg-light);
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Related Content */
.related-content {
    background-color: var(--bg-light);
    padding: 80px 0;
    margin-top: 80px;
}

.related-content h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 25px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2980b9;
}

/* Footer Styles */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .post-header h1 {
        font-size: 32px;
    }

    .post-content h2 {
        font-size: 26px;
        margin-top: 40px;
    }

    .post-content h3 {
        font-size: 20px;
    }

    .post-content .lead {
        font-size: 18px;
    }

    .post-content p,
    .post-content li {
        font-size: 16px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .related-content h2 {
        font-size: 28px;
    }

    .blog-content {
        padding: 30px 0;
    }

    .related-content {
        padding: 50px 0;
        margin-top: 50px;
    }
}

@media (max-width: 480px) {
    .post-header h1 {
        font-size: 28px;
    }

    .post-meta {
        flex-direction: column;
        gap: 5px;
    }

    .separator {
        display: none;
    }

    .logo-text {
        font-size: 20px;
    }

    .post-footer {
        margin-top: 40px;
        padding-top: 30px;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .related-content,
    .post-footer {
        display: none;
    }

    .post-content {
        max-width: 100%;
    }
}

/* Accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* 1) Widen the page shell (Astra + generic) */
.single-post .site-content .ast-container,
.single-post #primary .ast-container,
.blog .site-content .ast-container,
body .site-content .ast-container {
  max-width: 1440px !important;   /* try 1480 / 1600 if you want even wider */
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* 2) Elementor: stop inner containers from staying narrow */
.single-post .elementor-section .elementor-container,
.single-post .e-con,
.single-post .e-con-inner {
  max-width: 1440px !important;
}

/* 3) Three-column row: give center more room, sidebars fixed */
.single-post .article-grid,
.single-post .content-wrapper {
  display: grid !important;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr) minmax(0, 300px) !important;
  gap: 28px !important;
  align-items: start !important;
  width: 100% !important;
  max-width: none !important;
}

/* If your TOC/form use different classes, map them: */
.single-post .toc-sidebar,
.single-post .on-this-page { grid-column: auto !important; }

.single-post .article-content,
.single-post .main-content { min-width: 0 !important; }

@media (max-width: 1024px) {
  .single-post .article-grid,
  .single-post .content-wrapper {
    grid-template-columns: 1fr !important;
  }
}/* End custom CSS */