body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: #121212; /* Themed background */
    color: #E0E0E0; /* Themed text color */
    line-height: 1.6;
    background-image: radial-gradient(#131313 00%, #000 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

}

.container {
    /* max-width: 960px; */ /* REMOVED */
    /* margin-left: auto; */ /* REMOVED */
    /* margin-right: auto; */ /* REMOVED */
    /* padding: 2rem; */ /* REMOVED - specific sections use .content-container for this */
}

.content-container { /* New class for standard width content */
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem; /* Horizontal padding */
    box-sizing: border-box;
}

.hero {
    text-align: center;
    /* Padding for hero content is now inside .content-container effectively */
}

.hero h1 {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 3rem; /* Slightly larger for impact */
    margin-bottom: 1rem;
    color: #a155ff; /* Themed accent color */
}

.hero p {
    font-size: 1.2rem;
    color: #b0b0b0; /* Lighter grey for subheadings */
    margin-bottom: 2rem;
}

p.micro-subline {
    font-size: 0.9rem;
    color: #888; /* Even lighter grey for micro text */
    margin-top: 0.75rem;
    margin-bottom: 0; /* No bottom margin if it's the last thing */
}

.cta-button {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    background: #f6b93b; /* Changed to yellow */
    color: #121212 !important; /* Changed to dark text for contrast */
    padding: 1rem 2rem;
    font-size: 1.1rem; /* Slightly larger font */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: 600;
}

.cta-button:hover {
    background: #e0a830; /* Darker yellow on hover */
    transform: translateY(-2px);
}

.section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* Hero section specific adjustments if needed */
.hero-section-wrapper.section {
     margin-top: 1rem; /* Example: Less top margin for the very first visual element */
     margin-bottom: 1rem;
}

.section h2 {
    font-family: 'Red Hat Display', sans-serif;
    color: #a155ff; /* Themed accent color */
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.section p, .section ul {
    color: #E0E0E0; /* Ensure good contrast for paragraphs and lists */
    max-width: 720px; /* Readable line length for text blocks */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem; /* Spacing below paragraphs/lists */
}

.section-yellow {
    background-color: #f6b93b;
    color: #121212;
    padding-top: 22px;
}

.senja-embed .sj-powered-by{
    display: none !important;
    opacity: 0 !important
}

.section ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0; /* Remove default padding */
}

.section ul li {
    padding-left: 1.5em; /* Indent for custom bullet/icon */
    position: relative;
    margin-bottom: 0.5rem; /* Space between list items */
    line-height: 1.7;
}

.section ul li::before {
    content: '✨';
    position: absolute;
    left: 0;
    top: 0.05em;
    color: #a155ff;
    font-size: 0.9em;
}

/* FAQ List Styles (Formerly Accordion) */
.faq-section .faq-list {
    width: 100%;
    max-width: 720px;
    margin: 1rem auto 0 auto;
}

.faq-item {
    margin-bottom: 0;
}

.faq-question-header {
    width: 100%;
    background-color: transparent;
    color: #E0E0E0;
    border: none;
    border-top: 1px solid #333;
    padding: 1.25rem 0;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
}

.faq-item:last-child .faq-question-header {
    border-bottom: 1px solid #333;
}

.faq-answer-content {
    max-height: none;
    background-color: transparent;
    color: #b0b0b0;
}

.faq-answer-content p {
    padding: 0.5rem 0 1.25rem 0;
    margin: 0;
    line-height: 1.7;
    max-width: 100%;
}

.features,
.testimonials,
.audience {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; /* Increased gap */
}

.box {
    background: #1E1E1E; /* Themed box background */
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #2a2a2a; /* Subtle border */
}

.box strong {
    color: #a155ff; /* Accent for strong elements in boxes */
    font-size: 1.1em;
}

.quote {
    font-style: italic;
    font-size: 0.95rem;
    color: #b0b0b0; /* Lighter grey for quotes */
    padding-left: 1rem;
    border-left: 3px solid #a155ff; /* Accent border for quotes */
    margin-top: 0.5rem;
}

.testimonials .box .quote {
    border-left: none; /* Remove border if already in a box for testimonials */
    padding-left: 0;
    margin-bottom: 0.5rem;
}
.testimonials .box em {
    font-size: 0.9em;
    color: #888;
    display: block;
    text-align: right;
    margin-top: 0.5rem;
}


.highlight {
    color: #a155ff; /* Themed highlight color */
}

.center {
    text-align: center;
}

.cta-repeat {
    margin-top: 2rem;
}
.cta-repeat p.quote {
    border-left: none;
    padding-left: 0;
    font-size: 1rem;
}


footer {
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 3rem;
    border-top: 1px solid #333;
    background: #1E1E1E; /* Match box background */
}

footer .links a {
    color: #b0b0b0; /* Lighter grey for footer links */
    text-decoration: none;
    margin: 0 15px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

footer .links a:hover {
    color: #a155ff; /* Use themed accent on hover */
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 1rem;
}

.footer-icons svg path { /* Target path for fill */
    fill: #b0b0b0; /* Lighter grey for icons */
    transition: fill 0.3s ease;
}

.footer-icons a:hover svg path {
    fill: #a155ff; /* Themed accent on hover */
}

footer .links p { /* Targeting the copyright text */
    font-size: 0.9em; /* Adjusted size */
    color: #777; /* Kept original color as it's quite subtle */
}

/* Swiper Carousel Styles */
.cheatsheet-swiper {
    width: 100vw; /* Full viewport width */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    margin-bottom: 2.5rem; 
    background: #0f1115; 
    overflow: hidden; 
    padding-top: 2rem; /* Slightly increased padding */
    padding-bottom: 2rem; /* Slightly increased padding */
}

.cheatsheet-swiper .swiper-wrapper {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.cheatsheet-swiper .swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;

    width: 500px; /* Increased slide width for bigger images */
    height: auto; 
}

.cheatsheet-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: auto; 
    /* max-height: 450px; */ /* Removed max-height to allow images to scale taller */
    object-fit: contain;
}

/* Themed Swiper Navigation/Pagination - Ensure these are removed or commented if controls aren't used */
/*
.cheatsheet-swiper .swiper-button-next,
.cheatsheet-swiper .swiper-button-prev {
    color: #a155ff; 
    transition: color 0.3s ease;
}
.cheatsheet-swiper .swiper-button-next:hover,
.cheatsheet-swiper .swiper-button-prev:hover {
    color: #8e48e8; 
}

.cheatsheet-swiper .swiper-pagination-bullet {
    background: #666; 
    opacity: 0.8;
}

.cheatsheet-swiper .swiper-pagination-bullet-active {
    background: #a155ff; 
}
*/

.attribution cite {
    font-style: normal;
    font-weight: 600;
    color: #b0b0b0;
}

/* Two-column layout - now a direct child of body */
.two-column-layout-desktop {
    max-width: 1520px;
    margin: 3rem auto;
    padding: 0 1rem; 
    box-sizing: border-box;
}

/* Specific styling for titles within the two-column layout */
.two-column-layout-desktop > .section:first-child h2 { /* What You'll Fix */
    color: #f6b93b; /* Yellow */
}

.two-column-layout-desktop > .section:last-child h2 { /* Who's It For */
    color: #78e08f; /* Green */
}

/* Specific styling for box strong elements within each column */
.two-column-layout-desktop > .section:first-child .box strong { /* What You'll Fix boxes */
    color: #f6b93b;
    display: block;
}

.two-column-layout-desktop > .section:last-child .box strong { /* Who's It For boxes */
    color: #78e08f;
    display: block; /* Ensure it takes up its own line before the <br> */
    white-space: nowrap; /* Try to keep the strong text on one line */
    overflow: hidden; /* Hide overflow if it still can't fit, though ideally it fits */
    text-overflow: ellipsis; /* Show ... if text is clipped */
}

@media (min-width: 769px) {
    .two-column-layout-desktop {
        display: flex;
        justify-content: space-between;
        gap: 2rem;
        align-items: flex-start;
    }

    .two-column-layout-desktop > .section { /* These are the direct children sections */
        flex: 1;
        margin-top: 0;    /* No top/bottom margin needed, parent .two-column-layout-desktop has it */
        margin-bottom: 0;
        margin-left: 0;   /* No horizontal margin from section itself */
        margin-right: 0;
        padding: 0;       /* No padding needed from section itself, content inside has it */
    }

    .two-column-layout-desktop > .section h2 {
        margin-top: 0; /* First element in the column, remove extra top margin */
    }
}

/* Swiper section wrapper is a .section, its child .content-container handles width */
/* The inner .section.center for swiper content needs no extra vertical margins */
.swiper-section-wrapper .section.center {
    margin-top: 0;
    margin-bottom: 0;
}

.center{
    text-align: center;
}

/* Urgency Banner and Countdown Timer */
.urgency-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2000; /* Ensure it's above cookie banner if both are shown */
    display: flex; /* Use flexbox for layout */
    justify-content: space-between; /* Space out content and button */
    align-items: center; /* Vertically align items */
    padding: 0.5rem 1rem; /* Adjusted padding */
    background-color: #1E1E1E;
    border-top: 1px solid #f6b93b;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 0;
}

.urgency-banner-content {
    text-align: left; /* Align text to the left */
}

.urgency-banner p {
    margin: 0.1rem 0; /* Reduced margin for tighter packing */
    font-size: 0.85rem; /* Slightly smaller font for less height */
    color: #E0E0E0;
    text-transform: uppercase;
}

#countdown-timer {
    font-weight: bold;
    color: #f6b93b;
    font-size: 1.1em; /* Adjusted size relative to parent p */
}

.cta-button-banner {
    padding: 0.4rem 0.8rem; /* Smaller padding */
    font-size: 0.9rem;    /* Smaller font size */
    font-weight: 600;
    /* Inherits background and color from .cta-button, ensure hover is also fine */
}

/* Price Justification Section */
.price-justification-section h2 {
    margin-bottom: 1rem; /* Tighter spacing for this specific H2 */
}

.price-justification-section p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.price-justification-section p strong {
    color: #f6b93b; /* Or another distinct color like red/orange for alert */
    font-size: 1.1em;
}

/* Specific title colors */
h2.title-yellow {
    color: #f6b93b !important; /* Yellow */
}

h2.title-green {
    color: #78e08f !important; /* Green */
}

.product-preview-header {
    margin-bottom: 0rem; /* Space between this header and the swiper */
}

.product-preview-header h3 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    font-size: 1.8rem; /* Adjust as needed */
    color: #f6b93b; /* Changed to yellow */
    margin-bottom: 0.5rem;
    text-align: center;
}

.product-preview-header p {
    font-size: 1rem;
    color: #b0b0b0;
    text-align: center;
    max-width: 600px; /* Keep it neat */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem; /* Space before swiper starts */
}

@media (max-width: 768px) { /* Mobile devices */
    .cheatsheet-swiper .swiper-wrapper {
        padding-left: 0;
        padding-right: 0;
    }

    .cheatsheet-swiper .swiper-slide {
        width: 100vw;
    }
    /* Ensure images within the 100vw slide also scale correctly if they weren't already */
    .cheatsheet-swiper .swiper-slide img {
        width: 100%; /* This should already be the case, but good to confirm */
        object-fit: contain; /* Or cover, depending on desired image behavior */
    }

    /* Adjust other elements for mobile if needed */
    .two-column-layout-desktop {
        flex-direction: column;
    }

    .urgency-banner {
        flex-direction: column;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .urgency-banner-content {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    .cta-button-banner {
        width: 80%; /* Make banner CTA wider on mobile */
        margin: 0 auto;
    }
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0; /* Will be overlapped by urgency banner if urgency is also at bottom 0 */
    left: 0;
    width: 100%;
    background-color: #1a1a1a; /* Very dark, slightly different from other elements */
    color: #999; /* Light grey, low contrast for subtlety */
    padding: 8px 15px;
    font-size: 0.75rem; /* Small font */
    text-align: center;
    z-index: 1990; /* Below urgency banner */
    box-sizing: border-box;
    display: flex; /* Using flex to align items nicely if needed */
    justify-content: center;
    align-items: center;
}

#cookie-banner p {
    margin: 0;
    line-height: 1.4;
}

#cookie-banner button {
    background-color: #444;
    color: #ddd;
    border: none;
    padding: 3px 10px;
    font-size: 0.7rem; /* Very small button text */
    border-radius: 3px;
    margin-left: 10px;
    cursor: pointer;
    line-height: 1;
}

#cookie-banner button:hover {
    background-color: #555;
}

/* Consultant Bio Section on Main Page */
.consultant-bio-section {
    background-color: #1a1a1a; /* Slightly different dark background for distinction */
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.consultant-bio-section .content-container {
    max-width: 800px; /* A bit narrower for focused bio text */
}

.consultant-bio-section h2 {
    color: #a155ff; /* Purple accent */
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    border-bottom: none; /* No border for this h2 */
}

.consultant-bio-section .consultant-title {
    font-family: 'Red Hat Display', sans-serif;
    font-style: italic;
    color: #b0b0b0;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.consultant-bio-section p {
    color: #E0E0E0;
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: left; /* Align paragraphs to the left for readability */
    margin-bottom: 1rem;
}

.consultant-bio-section p:last-of-type {
    margin-bottom: 0;
}

.consultant-bio-flex-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 2rem;
    align-items: flex-start; /* Align items to the top */
}

.consultant-image-column {
    flex: 1; /* Adjust flex basis as needed, e.g., 30% or a fixed width */
    min-width: 200px; /* Minimum width before wrapping */
    max-width: 280px; /* Max width for the image container */
    margin: 0 auto; /* Center on mobile when wrapped */
}

.consultant-image-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.consultant-text-column {
    flex: 2; /* Adjust flex basis, e.g., 65% */
    min-width: 300px; /* Minimum width for text content */
}

/* Adjust text alignment for the text column if H2 was centered before */
.consultant-text-column h2 {
    text-align: left;
}
.consultant-text-column .consultant-title {
    text-align: left;
}

@media (min-width: 769px) { /* Desktop: enforce side-by-side */
    .consultant-bio-flex-container {
        flex-wrap: nowrap;
    }
    .consultant-image-column {
        margin: 0; /* Reset mobile centering */
    }
}

/* Confirmation Page Styles */
.confirm-page-content {
    padding-top: 3rem;
    padding-bottom: 3rem;
    text-align: left; /* Default to left, center h1 if needed */
}

.confirm-page-content h1 {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 2.5rem; /* Slightly smaller than main hero */
    color: #a155ff; /* Themed accent color */
    text-align: center;
    margin-bottom: 2rem;
}

.confirm-page-content h2 {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 1.8rem;
    color: #E0E0E0;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.confirm-page-content p {
    font-size: 1.1rem;
    color: #E0E0E0;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    max-width: 100%; /* Override the 720px max-width from .section p if it was inheriting */
}

.confirm-page-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.confirm-page-content ul li {
    padding-left: 1.8em;
    position: relative;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.confirm-page-content ul li::before {
    content: '•'; /* Simple bullet for confirmation page */
    position: absolute;
    left: 0;
    color: #a155ff; /* Accent color for bullets */
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

.confirm-page-content .signature {
    margin-top: 2.5rem;
    font-size: 1rem;
    color: #b0b0b0; /* Slightly dimmer for signature */
    line-height: 1.5;
}

.confirm-page-content strong {
    color: #f6b93b; /* Yellow for emphasis, like the CTA */
}