/* Global Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Typography & Layout "Reset" - Clean, Modern, Premium */
/* Targeting specific theme classes to override clutter */

.blog-details-inner-text,
.blog-details-content {
    background-color: #ffffff !important;
    font-family: "Source Serif 4", Sans-serif !important;
    padding: 0 !important;
    border: none !important;
}

/* Typography Standards */
.blog-details-inner-text p,
.blog-details-content p {
    font-family: "Source Serif 4", Sans-serif;
    font-size: 17px;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 24px;
    letter-spacing: 0.2px;
}

.blog-details-inner-text h1,
.blog-details-content h1 {
    font-family: "Source Serif 4", Sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #18427C;
    line-height: 1.3;
    margin-bottom: 30px;
    margin-top: 10px;
}

.blog-details-inner-text h2,
.blog-details-content h2 {
    font-family: "Source Serif 4", Sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #222222;
    line-height: 1.4;
    margin-bottom: 20px;
    margin-top: 45px;
}

.blog-details-inner-text h3,
.blog-details-content h3 {
    font-family: "Source Serif 4", Sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 18px;
    margin-top: 35px;
}

/* Links */
.blog-details-inner-text a,
.blog-details-content a {
    color: #6EC1E4 !important;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.blog-details-inner-text a:hover,
.blog-details-content a:hover {
    text-decoration: none;
    border-bottom: 1px solid #6EC1E4;
}

/* Clean Lists */
.blog-details-inner-text ul,
.blog-details-inner-text ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.blog-details-inner-text li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #333;
}

/* Blockquotes - Modern Style */
.blog-details-inner-text blockquote {
    border-left: 4px solid #6EC1E4;
    padding-left: 20px;
    margin: 30px 0;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
    font-family: "Source Serif 4", Sans-serif;
}


/* FAQ Accordion Styles - Premium Interactivity */
.x-acc-item {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    /* Subtle border definition */
    border-radius: 8px;
    /* More rounded */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    /* Very subtle shadow */
    margin-bottom: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: "Source Serif 4", Sans-serif;
}

.x-acc-item:hover {
    transform: translateY(-2px);
    /* "Lift" effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    /* Stronger shadow on hover */
}

.x-acc-header {
    background: #ffffff;
    border: none;
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    /* More padding */
    font-family: "Source Serif 4", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #272727;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
    outline: none;
}

.x-acc-header:hover {
    color: #6EC1E4;
    /* Blue text on hover */
}

.x-acc-icon {
    font-size: 14px;
    /* Smaller, cleaner icon */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy transition */
    color: #999;
    flex-shrink: 0;
    margin-left: 15px;
}

.x-acc-header.active .x-acc-icon {
    transform: rotate(90deg);
    color: #6EC1E4;
}

.x-acc-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.4s ease-out, padding 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    background-color: #ffffff;
}

.x-acc-content.active {
    max-height: 2000px;
    padding: 0 24px 24px 24px;
    opacity: 1;
}

.x-acc-content p {
    margin-bottom: 0;
    /* Let container padding handle spacing */
    color: #555;
    font-size: 16px;
    font-family: "Source Serif 4", Sans-serif;
}