/* =========================================
   Content Sections - Premium Redesign
   ========================================= */

/* Use a clean background foundation */
/* Use a clean background foundation */
.content-section {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    /* Force transparency to let body background show */
}

/* Alternating Backgrounds REMOVED to show premium body background */
/* 
.content-section:nth-of-type(odd) {
    background-color: var(--body-bg, #edeee9);
}

.content-section:nth-of-type(even) {
    background-color: #ffffff;
} 
*/

/* If the section has a specific background image set via inline style, 
   we ensure it covers properly, but the inline style will naturally override background-color */

/* Typography - Modern & Hierarchical */
.content-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color, #f58634);
    margin-bottom: 0.75rem;
    display: block;
}

.content-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.content-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-dark, #1e2a38);
    font-size: 2rem;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

@media (min-width: 992px) {
    .content-title {
        font-size: 2.7rem;
        /* Bigger, bolder titles on desktop */
    }
}

.content-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    /* 18px */
    line-height: 1.7;
    color: var(--text-body, #64748b);
    font-weight: 400;
}

.content-body p {
    margin-bottom: 1.5rem;
}

/* List Styling - Elegant & Clean */
.content-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.content-body ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark, #334155);
    font-weight: 500;
}

.content-body ul li::before {
    content: "\F26E";
    /* Bootstrap icon check-circle-fill code or similar */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color, #f58634);
    font-size: 1.1rem;
}

/* =========================================
   Layout Variants
   ========================================= */

/* Universal Content Card (White Panel) */
.content-card {
    background: #fff;
    /* This SHOULD have a background if it's a card */
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px -5px rgba(0, 0, 0, 0.08);
    /* Slightly darker shadow for white-on-white contrast */
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flow-root;
}

@media (min-width: 992px) {
    .content-card {
        padding: 3.5rem;
    }
}

/* Integrated Float Image */
.content-float-image {
    width: 100%;
    height: auto;
    max-height: 350px;
    /* Reduced from 400px */
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
    .content-float-image {
        width: 50%;
        /* Slightly reduced width to balance text */
        max-height: 500px;
        /* Reduced from 700px */
        /* Allow taller on desktop */
        margin-bottom: 1rem;
    }

    .content-float-image.float-start {
        float: left;
        margin-right: 3rem;
        margin-bottom: 1.5rem;
        /* Bottom margin for text wrapping under */
    }

    .content-float-image.float-end {
        float: right;
        margin-left: 3rem;
        margin-bottom: 1.5rem;
    }
}

/* 2. Glassmorphism Card (for Background Images) */
.content-glass-panel {
    background: rgba(255, 255, 255, 0.9);
    /* Slightly more opaque for better contrast */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 992px) {
    .content-glass-panel {
        padding: 4rem;
    }
}

/* ... */

/* 3. Feature Card (Centered, No Image) */
.content-feature-panel {
    background: rgba(255, 255, 255, 0.5);
    /* Semi-transparent instead of solid white? Or distinct */
    /* Let's make it consistent with the user request "content do not use explicit section background". 
       But this is a "Panel", so maybe it needs some bg? 
       User said "Text and Title color as it is", implying they want readibility.
       If I make it transparent, does it break?
       Let's stick to the request: "content do not use explicit section background".
       But "content-feature-panel" is a specific container style.
       
       Actually, the user said "content still using it own background color".
       This likely refers to the SECTION itself, not the cards inside it.
       
       I will force the SECTION to be transparent with !important.
    */
    background: #fff;
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px -5px rgba(0, 0, 0, 0.06);
    border-top: 5px solid var(--primary-color);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .content-feature-panel {
        padding: 5rem;
    }
}

/* Button Refinement */
.btn-content {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    /* Pill shape */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    /* Ensure proper button behavior */
}

.btn-content-primary {
    background: var(--primary-gradient, #f58634);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(245, 134, 52, 0.3);
}

.btn-content-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 134, 52, 0.4);
    color: white;
}