/* General Styles */
body {
    font-family: 'Inter', 'Roboto', sans-serif;
    line-height: 1.8;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #2c3e50;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    background: linear-gradient(135deg, #ED592C , #ED592C );
    color: white;
    padding: 21px 0 40px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    width: 100%;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIj48Y2lyY2xlIGN4PSIyMCIgY3k9IjIwIiByPSIxIiBmaWxsPSIjZmZmIiBvcGFjaXR5PSIwLjIiLz48L3N2Zz4=');
    opacity: 0.3;
    z-index: 0;
}

header h1 {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 20px auto;
}

/* Main content container */
.blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1, h2, h3 {
    font-family: 'Poppins', 'Roboto', sans-serif;
    color: #222;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 2.8em;
    margin-bottom: 24px;
    text-align: center;
}

h2 {
    font-size: 2em;
    margin: 50px 0 24px 0;
    border-left: 4px solid #ED592C ;
    padding: 0 0 0 16px;
    color: #1a1a1a;
}

h3 {
    font-size: 1.5em;
    color: #ED592C ;
    margin: 30px 0 18px 0;
    font-weight: 600;
}

p {
    margin: 20px 0;
    font-size: 1.15em;
    line-height: 1.9;
    color: #333;
}

ul, ol {
    margin: 24px 0;
    padding-left: 24px;
}

li {
    margin-bottom: 12px;
    font-size: 1.1em;
    color: #333;
    position: relative;
}

/* ul li::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #ED592C ;
    border-radius: 50%;
} */

/* Section styles - removing card-like appearance */
section {
    margin: 40px 0;
    padding: 10px 0;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: none;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

section > * {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

section:hover {
    transform: none;
    box-shadow: none;
}

section::after {
    display: none;
}

/* Separator between sections */
section:not(:last-child)::after {
    content: "";
    display: block;
    width: 100px;
    height: 2px;
    background: #e0e0e0;
    margin: 0px auto;
}

/* Quote styling */
blockquote {
    border-left: 4px solid #ED592C ;
    padding: 16px 24px;
    margin: 32px 0;
    background: #f5f9f5;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

blockquote p {
    margin: 0;
    color: #ED592C ;
}

/* Iframe styling */
iframe {
    display: block;
    margin: 40px auto;
    width: 100%;
    max-width: 700px;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: none;
}

/* FAQ Accordion Styles */
.faq-section {
    margin: 40px 0;
    padding: 0;
    background: none;
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: none;
}

.faq-section > * {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section h2 {
    text-align: left;
    margin-bottom: 32px;
    font-size: 2em;
    border-left: 4px solid #ED592C ;
    padding: 0 0 0 16px;
    color: #1a1a1a;
    background: none;
}

.accordion-item {
    background: none;
    border-radius: 0;
    margin-bottom: 0;
    border: none;
    box-shadow: none;
    overflow: visible;
}

.accordion-button {
    font-weight: 600;
    color: #333;
    background: none;
    border-left: 4px solid #ED592C ;
    padding: 20px 0 20px 24px;
    text-align: left;
    font-size: 1.15em;
    transition: all 0.3s ease;
    border-radius: 0;
    box-shadow: none;
}
.blog-image-podcast{
    width: 100%;
    max-width: 700px;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(44,62,80,0.10);
}

.accordion-button:not(.collapsed) {
    background: none;
    color: #ED592C ;
}

.accordion-button:hover {
    background: #f5f9f5;
}

.accordion-button:focus {
    outline: none;
    box-shadow: none;
}

.accordion-body {
    font-size: 1.1em;
    line-height: 1.8;
    padding: 16px 0 24px 28px;
    color: #444;
    background: none;
    border-top: 1px solid #f0f0f0;
}

/* Visual elements */
.highlight-box {
    background: #f5f9f5;
    border-radius: 8px;
    padding: 24px;
    margin: 32px 0;
    border-left: 4px solid #ED592C ;
}

.highlight-box h4 {
    color: #ED592C ;
    margin-top: 0;
}

/* Blog layout with sticky video */
.blog-flex-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    max-width: 1262px;
    margin: 0 auto;
    width: 100%;
    gap: 40px;
}

.blog-main-content {
    flex: 1 1 0;
    min-width: 0;
}

.blog-sticky-video {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    width: 460px;
    max-width: 40vw;
    z-index: 2;
    background: none;
    box-shadow: none;
}
.blog-sticky-video iframe {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(44,62,80,0.10);
    border: none;
}

/* Blog Meta Badge (Category, Author, Date) */
.blog-meta-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: linear-gradient(90deg, #ED592C 60%, #ED592C 100%);
    color: #fff;
    font-family: 'Poppins', 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 1.05em;
    letter-spacing: 1px;
    padding: 10px 32px;
    border-radius: 30px;
    margin: 30px auto 0 auto;
    box-shadow: 0 2px 12px rgba(44,62,80,0.10);
    text-align: center;
    /* position: relative; */
    left: 50%;
    /* transform: translateX(-50%); */
    z-index: 2;
    width: fit-content;
}
.blog-meta-badge span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.blog-meta-dot {
    font-size: 1.2em;
    color: #fff;
    opacity: 0.7;
}
.blog-meta-badge i {
    color: #fff;
    font-size: 1em;
    margin-right: 4px;
    opacity: 0.9;
}

/* Blog Meta Row (Author & Date) */
.blog-meta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 18px 0 0 0;
    font-family: 'Poppins', 'Roboto', sans-serif;
    font-size: 1.05em;
    color: #666;
    text-align: center;
}
.blog-meta-author, .blog-meta-date {
    display: flex;
    align-items: center;
    gap: 6px;
}
.blog-meta-dot {
    font-size: 1.2em;
    color: #bbb;
}
.blog-meta-row i {
    color: #ED592C;
    font-size: 1em;
    margin-right: 4px;
}

@media (max-width: 768px) {
    header {
        padding: 40px 0 30px 0;
    }
    .blog-meta-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: linear-gradient(90deg, #ED592C 60%, #ED592C 100%);
    color: #fff;
    font-family: 'Poppins', 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 0.8em;
    letter-spacing: 1px;
    padding: 10px 32px;
    border-radius: 30px;
    margin: 30px auto 0 auto;
    box-shadow: 0 2px 12px rgba(44,62,80,0.10);
    text-align: center;
    /* position: relative; */
    left: 50%;
    /* transform: translateX(-50%); */
    z-index: 2;
    width: fit-content;
}
    
    h1 {
        font-size: 2.2em;
    }
    
    h2 {
        font-size: 1.6em;
    }
    
    h3 {
        font-size: 1.3em;
    }
    
    .blog-container {
        padding: 0 5vw;
    }
    section {
        padding: 10px;
        margin: 20px auto;
    }
    .faq-section {
        padding: 20px;
    }
    
    .accordion-body {
        padding: 18px 20px;
    }
    
    iframe {
        height: 240px;
    }
    .blog-meta-row {
        font-size: 0.98em;
        gap: 10px;
        margin-top: 12px;
    }
}

@media (max-width: 900px) {
    .blog-container {
        max-width: 98vw;
        padding: 0 2vw;
    }
    section, .faq-section {
        max-width: 98vw;
        padding: 10px 2vw;
    }
    section > *, .faq-section > * {
        max-width: 98vw;
    }
}

@media (max-width: 1100px) {
    .blog-flex-wrapper {
        flex-direction: column;
        gap: 0;
    }
    .blog-sticky-video {
        position: static;
        width: 100%;
        max-width: 100vw;
        margin: 40px 0 0 0;
    }
    .blog-sticky-video iframe {
        height: 220px;
    }
    .blog-flex-wrapper {
    display: flex;
    flex-direction: column !important;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 15px;
}
}