.elementor-4422 .elementor-element.elementor-element-a8f369e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-6a746b2 *//* Root Variables */
:root {
    --primary-color: #2c5f7d;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --link-color: #2c5f7d;
    --link-hover: #1a3d4f;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.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: 1000;
    box-shadow: var(--shadow-sm);
}

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

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

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3d4f 100%);
    color: var(--white);
    padding: 60px 0 40px;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    opacity: 0.7;
}

.hero-section h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    max-width: 900px;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    opacity: 0.9;
    flex-wrap: wrap;
}

.post-meta .separator {
    opacity: 0.5;
}

/* Featured Image */
.featured-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 50px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Layout */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    padding: 40px 0 80px;
}

/* Blog Content */
.blog-content {
    max-width: 800px;
}

.intro-text {
    font-size: 21px;
    color: var(--text-medium);
    margin-bottom: 30px;
    line-height: 1.8;
}

.intro-text p {
    margin-bottom: 20px;
}

.blog-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 50px 0 25px;
    line-height: 1.3;
}

.blog-content h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 40px 0 20px;
    line-height: 1.4;
}

.blog-content p {
    margin-bottom: 25px;
    color: var(--text-dark);
}

.blog-content a {
    color: var(--link-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
    transition: all 0.3s ease;
}

.blog-content a:hover {
    color: var(--link-hover);
    border-bottom-color: var(--link-hover);
}

.blog-content ul.content-list {
    margin: 25px 0;
    padding-left: 25px;
}

.blog-content ul.content-list li {
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Callout Box */
.callout-box {
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
    padding: 30px;
    margin: 40px 0;
    border-radius: 4px;
}

.callout-box h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.callout-box ul {
    list-style: none;
    padding: 0;
}

.callout-box ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.callout-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.info-box {
    background-color: #e8f4f8;
    border-left-color: var(--primary-color);
}

/* Quote Block */
.quote-block {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    position: relative;
}

.quote-block blockquote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0;
}

.quote-block cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: var(--text-medium);
    font-weight: 600;
}

/* Image Block */
.image-block {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.image-caption {
    padding: 15px 20px;
    background-color: var(--background-light);
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3d4f 100%);
    color: var(--white);
    padding: 50px;
    text-align: center;
    border-radius: 8px;
    margin: 60px 0;
}

.cta-section h3 {
    font-size: 28px;
    margin: 0 0 15px;
    color: var(--white);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background-color: #c59563;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Author Bio */
.author-bio {
    background-color: var(--background-light);
    padding: 35px;
    border-radius: 8px;
    margin: 50px 0;
}

.author-bio h3 {
    font-size: 24px;
    margin: 0 0 15px;
    color: var(--primary-color);
}

.author-bio p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

/* Related Posts */
.related-posts {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 2px solid var(--border-color);
}

.related-posts h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.related-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card h4 {
    font-size: 18px;
    margin: 20px 20px 10px;
    line-height: 1.4;
}

.related-card h4 a {
    color: var(--text-dark);
    text-decoration: none;
    border: none;
}

.related-card h4 a:hover {
    color: var(--primary-color);
}

.related-card p {
    font-size: 15px;
    margin: 0 20px 20px;
    color: var(--text-light);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-size: 20px;
    margin: 0 0 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3d4f 100%);
    color: var(--white);
    border: none;
}

.cta-widget h3 {
    color: var(--white);
}

.cta-widget p {
    margin-bottom: 20px;
    font-size: 16px;
}

.sidebar-button {
    display: block;
    width: 100%;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 14px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.sidebar-button:hover {
    background-color: #c59563;
    transform: translateY(-2px);
}

.procedure-list {
    list-style: none;
    padding: 0;
}

.procedure-list li {
    margin-bottom: 12px;
}

.procedure-list a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.procedure-list a:hover {
    color: var(--primary-color);
}

.procedure-list a::before {
    content: '→';
    margin-right: 10px;
    color: var(--accent-color);
}

.contact-widget p {
    margin-bottom: 10px;
    font-size: 15px;
}

.contact-widget a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-widget a:hover {
    color: var(--link-hover);
}

.recent-posts-list {
    list-style: none;
    padding: 0;
}

.recent-posts-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.recent-posts-list a:hover {
    color: var(--primary-color);
}

/* Footer */
.site-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-column h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 14px;
}

.footer-bottom a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sidebar {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 17px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-section {
        padding: 40px 0 30px;
    }
    
    .hero-section h1 {
        font-size: 30px;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .blog-content h2 {
        font-size: 28px;
    }
    
    .blog-content h3 {
        font-size: 22px;
    }
    
    .intro-text {
        font-size: 19px;
    }
    
    .content-wrapper {
        padding: 30px 0 60px;
    }
    
    .callout-box,
    .quote-block {
        padding: 25px;
    }
    
    .cta-section {
        padding: 35px 25px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 22px;
    }
    
    .main-nav ul {
        gap: 15px;
    }
    
    .main-nav a {
        font-size: 15px;
    }
    
    .hero-section h1 {
        font-size: 26px;
    }
    
    .post-meta {
        font-size: 14px;
    }
    
    .featured-image {
        height: 250px;
    }
    
    .blog-content h2 {
        font-size: 24px;
        margin: 40px 0 20px;
    }
    
    .blog-content h3 {
        font-size: 20px;
        margin: 30px 0 15px;
    }
    
    .intro-text {
        font-size: 17px;
    }
    
    .sidebar-widget,
    .author-bio {
        padding: 20px;
    }
    
    .cta-section h3 {
        font-size: 24px;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .sidebar,
    .cta-section,
    .related-posts,
    .site-footer {
        display: none;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .blog-content a {
        color: var(--text-dark);
        text-decoration: underline;
    }
}
/* 1) Remove Astra boxed container on single blog posts */
.single-post .site-content > .ast-container,
.single-post .ast-container,
.single-post .content-area {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* 2) Force your specific Elementor container full-bleed (ID from screenshot: 8f369e) */
.single-post .elementor-element.elementor-element-8f369e,
.single-post .elementor-element[data-id="8f369e"] {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* 3) Remove inner boxed width inside that same container */
.single-post .elementor-element.elementor-element-8f369e > .e-con-inner,
.single-post .elementor-element[data-id="8f369e"] > .e-con-inner,
.single-post .elementor-element.elementor-element-8f369e .e-con-boxed,
.single-post .elementor-element[data-id="8f369e"] .e-con-boxed {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* 4) Stretch image to edges */
.single-post .elementor-element.elementor-element-8f369e img,
.single-post .elementor-element[data-id="8f369e"] img {
  width: 100% !important;
  max-width: 100% !important;
  display: block;
  height: auto;
  object-fit: cover;
}
/* Make blog post wrapper full-bleed */
main.blog-post {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Stretch featured image area */
main.blog-post .featured-image,
main.blog-post .featured-image img {
  width: 100% !important;
  max-width: 100% !important;
  display: block;
}

/* Make image fill nicely */
main.blog-post .featured-image img {
  height: auto;
  object-fit: cover;
}/* End custom CSS */