    body
         {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        
            background-color: #3e3b4f; 
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 20px;
        }

        .card {
            background-color: #1e1c24; 
            max-width: 1050px; 
            width: 150%;
            min-height: 600px; /* 🌟 Guaranteed minimum structural card height across all views */
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6); 
            border: 1px solid #5a566e;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        /* Container Layout */
        .main-content-layout {
            display: flex;
            width: 100%;
            flex-direction: row;
            flex: 1; /* Allows inner wrapper to grow vertically and push layouts */
        }

        /* Home State Centering */
        .card.home-active .main-content-layout {
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px;
            flex: 1;
        }

        .card.home-active .home-hero-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 600px;
        }

        /* Base Image Container Styles */
        .image-container {
            width: 100%;
            max-width: 250px; 
            padding: 0px; 
            transition: max-width 0.4s ease;
            flex-shrink: 0;
            display: flex;
        }

        /* Specific Home Tab Image Scaling Rules */
        .card.home-active .image-container {
            max-width: 600px; 
            margin-bottom: 25px;
            flex-shrink: 0;
        }

        .image-container.sidebar-size {
            max-width: 280px; 
        }

        .illustration {
            width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
            border: 1px solid rgba(226, 224, 232, 0.1);
        }

        /* Navigation Toolbar Styling */
        .toolbar {
            width: 120%; 
            box-sizing: border-box; 
            background-color: #15131a; 
            padding: 15px 30px;
            display: flex;
            justify-content: flex-start; 
            border-bottom: 1px solid #3e3b4f;
        }

                /* Turns on the "shelf" to put columns side-by-side */
        .blog-split-container {
            display: flex;
            gap: 30px;
            flex-direction: column;
            width: 100%;
            max-width: 100%; /* Prevents it from breaking the boundaries of your left column */
            box-sizing: border-box;
        }
        .comment-content {
            width: 100%;          /* Makes it stretch to fill the width of the column */
            height: 45px;         /* Changes the vertical height (e.g., 45px for a slim input, 120px for a taller box) */
            padding: 8px;         /* Padding inside the box so text doesn't touch the borders */
            box-sizing: border-box; /* Ensures the border doesn't push it out of its column */
        }

        /* Tells the text column to take up the majority of the space (on the left) */
        .blog-text-column {
            flex: 1.8; 
            min-width: 0;
        }

        /* Tells the comment column to take up the rest of the space (on the right) */
        .blog-comment-column {
            flex: 0.8;
            min-width: 240px;      /* Prevents the text box from squeezing too small */
        }

        /* Styles your comment box container */
        .comment-box {
            background-color: rgba(197, 168, 128, 0.03);
            border: 1px solid rgba(197, 168, 128, 0.2);
            padding: 20px;
            border-radius: 6px;
            /*display: flex;*/
            flex-direction: column;
        }

        

        .brand-phrase {
            font-family: 'Cinzel', serif; 
            color: #a29fb0; 
            font-size: 1.1rem;
            font-style: italic;
            margin-top: 20px; 
            letter-spacing: 1px;
            line-height: 1.5;
        }

        .card.home-active .brand-phrase {
            font-size: 1.2rem; 
            margin-top: 15px;
        }

        .page-section {
            display: none; 
            margin-bottom: 40px;
        }

        .page-section.active-page {
            display: block; 
        }

        .left-column {
            flex: 1.2; 
            padding: 40px;
            display: flex;
            flex-direction: column;
            transition: flex 0.4s ease, padding 0.4s ease;
        }

        .right-column {
            flex: 0.8; 
            padding: 40px;
            display: flex;
            flex-direction: column;      /* ⭐️ Stack elements vertically instead of horizontally */
            align-items: center;         /* ⭐️ Center them horizontally inside the column */
            justify-content: flex-start; /* ⭐️ Align everything to the top of the page */
            transition: flex 0.4s ease, padding 0.4s ease;
        }

        .body-text {
            font-family: sans-serif;
            color: #a29fb0;
            line-height: 1.6;
            font-size: 1rem;
        }

        .nav-link {
            font-family: 'Cinzel', serif;
            color: #a2b4c2; 
            text-decoration: none;
            font-weight: 700;
            font-size: 0.8rem;
            letter-spacing: 1px;
            transition: color 0.3s ease;
            margin-right: 25px;
            cursor: pointer;
        }

        .nav-link:hover, .nav-link.active {
            color: #e2e0e8; 
        }

        .title-container {
            padding: 30px 40px 20px 40px;
            text-align: center;
        }

        h1 {
            font-family: 'Cinzel', serif;
            color: #e2e0e8;
            font-size: 1.8rem; 
            letter-spacing: 3px;
            font-weight: 700;
            line-height: 1.3;
            text-shadow: 0 0 10px rgba(226, 224, 232, 0.15); 
        }

        /* Support Section Styling */
        .support-section {
            padding: 0 40px 40px 40px;
            text-align: center;
            width: 100%;
            margin-top: auto; /* Pushes support area cleanly down */
        }

        .support-text {
            font-family: sans-serif;
            color: #a29fb0;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .button-group {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .support-btn {
            display: inline-block;
            padding: 12px 24px;
            color: #1e1c24; 
            font-family: 'Cinzel', serif;
            font-weight: 700;
            text-decoration: none;
            border-radius: 30px;
            letter-spacing: 1px;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .crow-btn {
            background-color: #a2b4c2;
            box-shadow: 0 4px 15px rgba(162, 180, 194, 0.2);
        }

        .crow-btn:hover {
            background-color: #bdcbd7;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(162, 180, 194, 0.4);
        }

        .bear-btn {
            background-color: #c5a880;
            box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
        }

        .bear-btn:hover {
            background-color: #d4bc9c;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(197, 168, 128, 0.4);
        }

        @media (max-width: 600px) {
            body { padding: 20px 10px; }
            .title-container, .support-section { padding: 20px; }
            h1 { font-size: 1.5rem; letter-spacing: 1px; }
            .button-group { flex-direction: column; width: 100%; }
            .support-btn { width: 100%; text-align: center; }
            .card.home-active .image-container { max-width: 160px; }
        }

        /* Style for your blog post buttons */
        .blog-post-btn {
            font-family: 'Cinzel', serif; /* Matches your toolbar font */
            font-size: 1rem;
            font-weight: 500;
            color: #c5a880;              /* Matching the elegant gold/beige text */
            background: transparent;     /* Removes the default grey background */
            border: 1px solid #c5a880;   /* Gives it a thin, elegant border */
            padding: 8px 16px;
            border-radius: 4px;          /* Smooths out the sharp square corners slightly */
            cursor: pointer;
            transition: all 0.3s ease;   /* Makes the hover transition smooth */
        }

        /* Hover effect when you mouse over the buttons */
        .blog-post-btn:hover {
            background-color: #c5a880;
            color: #1a1a1a;              /* Inverts colors beautifully on hover */
            box-shadow: 0 0 10px rgba(197, 168, 128, 0.3);
        }

        /* Optional wrapper styling to space the dates and buttons cleanly */
        .blog-link-container {
            display: flex;
            align-items: center;
            margin-bottom: 15px;         /* Adds breathing room between blog items */
        }
        .language-switcher {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .flag-icon {
            font-size: 24px; /* Adjust size to match your font scale */
            text-decoration: none;
            line-height: 1;
            transition: transform 0.2s ease, filter 0.2s ease;
            cursor: pointer;
        }

        /* Hover effect for the clickable option */
        .flag-icon:hover {
            transform: scale(1.2);
        }

        /* Fades out the flag of the page the user is currently viewing */
        .flag-icon.active {
            opacity: 0.4;
            cursor: default;
            pointer-events: none; 
        }

        /* Feedback Section Container */
/* ==========================================================================
   FEEDBACK MODULE SYSTEM (Matches Dark Aesthetic & Cinzel Theme)
   ========================================================================== */

.feedback-section {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 40px 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feedback-section h2 {
    font-family: 'Cinzel', serif;
    color: #e2e0e8;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(226, 224, 232, 0.15);
}

/* Form Container matching the deep .comment-box styling rules */
.feedback-form {
    background-color: rgba(197, 168, 128, 0.02);
    border: 1px solid rgba(197, 168, 128, 0.15);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
}

.paw-rating-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.paw-rating-container label {
    font-family: sans-serif;
    color: #a29fb0;
    font-size: 0.95rem;
}

/* 1 to 5 Bear Paws Design Integration */
.paw-rating {
    display: flex;
    gap: 12px;
    font-size: 2.3rem;
    cursor: pointer;
    user-select: none;
    width: max-content;
}

.paw {
    color: #3e3b4f; /* Matches your background accent when unselected */
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
}

/* Hovered & Active States inherit the elegant gold bear profile tone */
.paw.hovered,
.paw.active {
    color: #c5a880; 
    transform: scale(1.15);
    filter: drop-shadow(0 0 8px rgba(197, 168, 128, 0.3));
}

/* Fields & Forms matching the site inputs framework */
.form-input-group {
    width: 100%;
}

.form-input-group input[type="text"],
.form-input-group textarea {
    width: 100%;
    background-color: #15131a; /* Matches your dark toolbar dark shade */
    border: 1px solid #5a566e;  /* Matches your structural frame border color */
    color: #e2e0e8;
    font-family: sans-serif;
    font-size: 0.95rem;
    padding: 12px;
    border-radius: 6px;
    box-sizing: border-box;
    outline: none;
    transition: all 0.3s ease;
}

.form-input-group textarea {
    resize: vertical;
}

.form-input-group input[type="text"]::placeholder,
.form-input-group textarea::placeholder {
    color: #5a566e;
}

/* Focus illuminates with the branding aesthetic glow */
.form-input-group input[type="text"]:focus,
.form-input-group textarea:focus {
    border-color: #c5a880;
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.15);
}

/* Native Button Styling mapped to the .blog-post-btn structure */
#fb-submit-btn {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #c5a880;
    background: transparent;
    border: 1px solid #c5a880;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start; /* Keeps the button neatly aligned under the forms */
}

#fb-submit-btn:hover {
    background-color: #c5a880;
    color: #1e1c24; /* Inverts color cleanly using your dark theme ground block value */
    box-shadow: 0 0 15px rgba(197, 168, 128, 0.4);
}

/* Dynamic Floating Box Grid Setup */
.floating-paws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Translucent floating response cards matching your site elements layout */
.feedback-card {
    background-color: rgba(21, 19, 26, 0.6); /* Deep backdrop blend */
    border: 1px solid rgba(90, 86, 110, 0.4); /* Muted slate edge border */
    border-radius: 8px;
    padding: 12px 15px;       /* Slimmed down inner breathing room */
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

/* Interactive Floating elevation response */
.feedback-card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 168, 128, 0.4); /* Soft warm profile gleam */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5), 0 0 10px rgba(197, 168, 128, 0.1);
}

.card-paws {
    color: #c5a880;
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.feedback-card h4 {
    font-family: 'Cinzel', serif;
    margin: 0 0 8px 0;
    color: #e2e0e8;
    font-size: 1.05rem;
    font-weight: 700;
}

.feedback-card p {
    font-family: sans-serif;
    color: #a29fb0;
    font-size: 0.9rem;        /* Slightly smaller text for better scanning */
    line-height: 1.4;
    margin: 4px 0; 
}
.feedback-card .user-name {
    font-size: 0.95rem;
    font-weight: 600;
}

.feedback-card .timestamp {
    font-size: 0.8rem;
    color: #777;
}

/* Tighten up the textarea if it's in this section */
.feedback-form textarea {
    padding: 10px;
    font-size: 0.9rem;
    height: 90px;             /* Capped height so it doesn't dominate the screen */
    resize: vertical;
}
/* Responsive Scaling details */
@media (max-width: 600px) {
    .feedback-section { padding: 20px; }
    .feedback-form { padding: 20px; }
    #fb-submit-btn { width: 100%; text-align: center; }
}

/* ==========================================================================
   UPDATED: Side-by-Side Split Inner Layout (Preserving Sidebar Panel)
   ========================================================================== */

/* Local inner split wrapper inside the main content page section */
.feedback-split-wrapper {
    display: flex;
    gap: 2rem;
    width: 100%;
    align-items: flex-start;
    margin-top: 1.5rem;
    box-sizing: border-box;
}

/* Left Sub-Column: Form Box container customized to your dark aesthetic */
.fb-form-box {
    flex: 1; /* Splits room evenly with the review panel */
    background-color: #1e1c24; 
    border: 1px solid rgba(197, 168, 128, 0.15);
    padding: 25px;
    border-radius: 12px;
    box-sizing: border-box;
}

/* Right Sub-Column: Review Scroll Box container */
.fb-reviews-box {
    flex: 1; /* Splits room evenly with the form panel */
    background-color: #1e1c24;
    border: 1px solid rgba(197, 168, 128, 0.15);
    padding: 15px 20px;       /* Reduced from typical heavy padding */
    margin-bottom: 20px;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
}

/* Scrollable box container feeding the dynamic card structures */
#feedback-display-grid {
    max-height: 440px; /* Locks vertical scale seamlessly matching input box */
    overflow-y: auto;   /* Generates the scroll tracking column */
    padding-right: 0.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;                /* Tighter gap between comment blocks */
    width: 100%;
    flex-direction: column; /* Organizes feedback items vertically */
    gap: 1rem;
}

/* Gold Theme Custom Webkit Scrollbars */
#feedback-display-grid::-webkit-scrollbar {
    width: 5px;
}
#feedback-display-grid::-webkit-scrollbar-track {
    background: rgba(21, 19, 26, 0.5);
    border-radius: 10px;
}
#feedback-display-grid::-webkit-scrollbar-thumb {
    background: #c5a880; /* Elegant Crow & Bear Accent Gold */
    border-radius: 10px;
}

/* Responsive adjustment: Drops side-by-side split into full stacking on smaller viewports */
@media (max-width: 850px) {
    .feedback-split-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    .fb-form-box, 
    .fb-reviews-box {
        width: 100%;
    }
}

/* Ensure the right column lays its items out vertically */
.right-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* Downsize the review blocks so they sit cleanly inside the sidebar framework */
#sidebar-reviews {
    width: 100%;
    max-height: 450px;       /* Puts a cap on height so it doesn't stretch past the screen */
    overflow-y: auto;        /* Adds a clean scrollbar if there are many comments */
    padding: 5px;
}

#feedback-display-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Individual feedback cards styled for the side panel */
.feedback-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 168, 128, 0.15);
    padding: 10px 12px;
    border-radius: 4px;
}

.feedback-card p {
    font-size: 0.88rem;      /* Lean typography for space savings */
    color: rgba(255, 255, 255, 0.9);
    margin: 3px 0;
}