/* style.css */
/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&family=Oswald:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
    /* Color Palette: Split-Complementary (Teal base, Coral & Gold accents) */
    --primary-color: #0D5C63; /* Deep Teal - Cool */
    --primary-color-darker: #094B50; /* Darker Teal */
    --accent-color-1: #FF6F61; /* Warm Coral - Warm, Main Accent */
    --accent-color-1-darker: #E65A4F; /* Darker Coral */
    --accent-color-2: #FFC107; /* Gold/Yellow - Warm, Secondary Accent */
    --accent-color-2-darker: #E0A800; /* Darker Gold */

    --text-dark: #212529; /* Dark Gray, almost black for high contrast */
    --text-light: #f8f9fa; /* Off-white, for dark backgrounds */
    --text-muted: #6c757d; /* Muted Gray */
    --text-headings: var(--primary-color); /* Headings color */
    --text-on-primary: var(--text-light);
    --text-on-accent: var(--text-light);

    --background-body: #ffffff; /* Clean white background */
    --background-light-section: #f7f9fc; /* Very light gray for subtle section differentiation */
    --background-medium: #e9ecef;
    --background-dark-footer: #1f2327; /* Darker for footer */

    --border-color: #dee2e6; /* Light Gray Border */
    --card-border-color: var(--border-color);
    --input-border-color: var(--border-color);
    --input-focus-border-color: var(--primary-color);
    --input-focus-shadow-color: rgba(13, 92, 99, 0.25);

    /* Shadows */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.12);
    --text-shadow-subtle: 1px 1px 2px rgba(0,0,0,0.1);
    --text-shadow-strong: 1px 1px 3px rgba(0,0,0,0.3);

    /* Fonts */
    --font-primary: 'Oswald', sans-serif;
    --font-secondary: 'Nunito', sans-serif;

    /* Transitions & Animations */
    --transition-speed-fast: 0.2s;
    --transition-speed-normal: 0.3s;
    --transition-speed-slow: 0.5s;
    --ease-out-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy ease */
    --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Spacing */
    --spacing-xs: 1rem;
    --spacing-sm: 1rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;

    /* Glassmorphism */
    --glass-background: rgba(255, 255, 255, 0.1);
    --glass-blur: blur(8px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Global & Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    background-color: var(--background-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--text-headings);
    font-weight: 600;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: var(--spacing-md);
}
.title { /* Bulma .title override for font and color */
    font-family: var(--font-primary) !important;
    color: var(--text-headings) !important;
    font-weight: 600 !important;
}
.subtitle { /* Bulma .subtitle override */
    font-family: var(--font-secondary) !important;
    color: var(--text-muted) !important;
    font-weight: 400 !important;
}
.section-title { /* Custom class for main section titles */
    font-size: 2.8rem; /* Large and bold */
    margin-bottom: var(--spacing-sm);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-subtitle { /* Custom class for section subtitles */
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xl);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--accent-color-1);
    text-decoration: none;
    transition: color var(--transition-speed-fast) var(--ease-out-quad);
}
a:hover {
    color: var(--accent-color-1-darker);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}
figure {
    margin: 0;
}

/* Bulma section padding adjustment */
.section {
    padding: var(--spacing-xxl) var(--spacing-lg);
}

/* Main Container to manage page width - works with Bulma's .container */
.main-container {
    /* Barba.js might handle overflow, but good to have if needed */
}
.container.content-section { /* For text-heavy pages, limit width */
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

/* Header & Navigation */
.header.is-fixed-top {
    background-color: rgba(255, 255, 255, 0.85); /* Semi-transparent */
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: background-color var(--transition-speed-normal) ease;
}
.navbar-item.logo-text {
    font-family: var(--font-primary);
    font-size: 1.9em;
    font-weight: 700;
    color: var(--primary-color) !important;
    letter-spacing: 0.5px;
}
.navbar-item, .navbar-link {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1.05em;
    transition: color var(--transition-speed-fast) var(--ease-out-quad), transform var(--transition-speed-fast) var(--ease-out-bounce);
}
.navbar-item:hover, .navbar-link:hover {
    background-color: transparent !important;
    color: var(--accent-color-1) !important;
    transform: translateY(-2px);
}
.navbar-item.is-active {
    background-color: transparent !important;
    color: var(--accent-color-1) !important;
    font-weight: 700;
}
.navbar-burger span {
    background-color: var(--primary-color);
    height: 3px;
    width: 20px;
}
.navbar-burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar-burger.is-active span:nth-child(2) {
    opacity: 0;
}
.navbar-burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Global Button Styles */
.button, button, input[type='submit'], input[type='button'] { /* Target Bulma and standard elements */
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1em;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-speed-normal) var(--ease-out-bounce);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex; /* For icon alignment */
    align-items: center;
    justify-content: center;
}
/* Primary Button Style (e.g., .accent-button or .is-primary) */
.button.is-primary, .button.accent-button {
    background-color: var(--accent-color-1);
    border-color: var(--accent-color-1);
    color: var(--text-on-accent);
}
.button.is-primary:hover, .button.accent-button:hover {
    background-color: var(--accent-color-1-darker);
    border-color: var(--accent-color-1-darker);
    color: var(--text-on-accent);
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-md);
}
/* Secondary/Outline Button Style */
.button.is-secondary, .button.outline-button {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.button.is-secondary:hover, .button.outline-button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-on-primary);
    transform: translateY(-3px) scale(1.03);
}
/* Link button for "Read More" */
.button.is-link.is-outlined, .read-more-link {
    font-family: var(--font-secondary);
    color: var(--accent-color-1);
    border-color: transparent; /* Or a very subtle border */
    background-color: transparent;
    padding: var(--spacing-xs) 0; /* Minimal padding */
    text-transform: none;
    font-weight: 700;
    letter-spacing: 0;
}
.button.is-link.is-outlined:hover, .read-more-link:hover {
    color: var(--accent-color-1-darker);
    background-color: transparent;
    border-color: transparent;
    text-decoration: underline;
    transform: translateX(3px); /* Slight shift */
}
.button .icon:first-child:not(:last-child) { /* Space between icon and text */
    margin-right: var(--spacing-sm);
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--text-light); /* Enforced white text */
    /* min-height: calc(100vh - 52px); /* Full viewport height minus navbar if navbar is static height */
    display: flex; /* For vertical centering of .hero-body */
    align-items: center;
    justify-content: center;
}
.hero-section::before { /* Dark overlay for text readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55));
    z-index: 1;
}
.hero-section .hero-body { /* Bulma class */
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-xxl) var(--spacing-lg);
}
.hero-title {
    color: var(--text-light) !important; /* Force white */
    font-size: clamp(2.5rem, 6vw, 4.5rem); /* Responsive font size */
    font-weight: 700 !important;
    text-shadow: var(--text-shadow-strong);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
}
.hero-subtitle {
    color: var(--text-light) !important; /* Force white */
    font-size: clamp(1.1rem, 3vw, 1.75rem);
    font-weight: 400 !important;
    text-shadow: var(--text-shadow-subtle);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-xl);
}
.hero-section .button.is-primary {
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: 1.1em;
}

/* Pricing / Products Section & General Card Styles */
.card { /* Base Bulma card styling, ensure content centering */
    background-color: var(--background-body);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--card-border-color);
    transition: transform var(--transition-speed-normal) var(--ease-out-bounce), box-shadow var(--transition-speed-normal) var(--ease-out-quad);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; /* Make cards in a row equal height if needed with grid/flex parent */
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
/* For product, blog, team cards where image is on top */
.card .card-image { /* Bulma class */
    overflow: hidden; /* For image zoom effect */
    position: relative;
    /* Fixed height for image containers in cards */
    height: 250px; /* Adjust as needed, e.g., 200px or 300px */
    display: flex; /* Centering image */
    align-items: center;
    justify-content: center;
}
.card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crucial for fixed height containers */
    transition: transform var(--transition-speed-slow) var(--ease-out-quad);
}
.card:hover .card-image img {
    transform: scale(1.08);
}
.card .card-content { /* Bulma class */
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allows content to push footer/button down */
    text-align: center; /* Center text content */
}
.card .card-content .title,
.card .card-content .subtitle {
    margin-bottom: var(--spacing-sm);
}
.card .card-content .content {
    margin-bottom: var(--spacing-md);
    flex-grow: 1; /* Pushes button to bottom if card content varies */
}
.product-card .product-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}
.product-card .product-price {
    color: var(--accent-color-1);
    font-family: var(--font-primary);
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}
.product-card .button {
    margin-top: auto; /* Pushes button to bottom of card */
}

/* About Intro Section */
#about-intro {
    background-color: var(--background-light-section);
}
#about-intro .image.is-square img { /* Bulma class */
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

/* Team Section */
.team-card .card-image { /* Override for team card images if they are profile-like */
    height: 280px; /* Example fixed height for profile images */
}
.team-card .card-content .title {
    font-size: 1.4rem;
}
.team-card .card-content .subtitle {
    color: var(--accent-color-2);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}
.team-card .animated-icon i {
    font-size: 1.8em;
    color: var(--accent-color-1);
    transition: transform var(--transition-speed-normal) var(--ease-out-bounce);
    margin-top: var(--spacing-sm);
}
.team-card:hover .animated-icon i {
    transform: scale(1.2) rotate(10deg);
}

/* External Resources Section */
#external-resources {
    background-color: var(--background-light-section);
}
.resource-list .box.resource-item { /* Bulma box */
    margin-bottom: var(--spacing-lg);
    transition: box-shadow var(--transition-speed-normal) var(--ease-out-quad), transform var(--transition-speed-normal) var(--ease-out-bounce);
    background-color: var(--background-body);
    border-left: 4px solid var(--accent-color-2);
}
.resource-list .box.resource-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}
.resource-list .box.resource-item .title a {
    color: var(--primary-color);
}
.resource-list .box.resource-item .title a:hover {
    color: var(--accent-color-1);
}

/* Blog Section */
.blog-card .card-image {
    height: 220px; /* Adjust for blog post previews */
}
.blog-card .card-content .title {
    font-size: 1.3rem;
    line-height: 1.4;
}
.blog-card .card-content .subtitle { /* For author/date */
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Press Section */
#press {
    background-color: var(--background-light-section);
}
.press-logos img {
    max-height: 45px;
    width: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: filter var(--transition-speed-normal) ease, opacity var(--transition-speed-normal) ease, transform var(--transition-speed-normal) var(--ease-out-bounce);
    margin: var(--spacing-md);
}
.press-logos img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}
.press-quote {
    margin-top: var(--spacing-xl);
    font-style: italic;
    font-size: 1.15em;
    color: var(--text-dark);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.press-quote em {
    font-weight: 600;
    color: var(--primary-color);
}

/* Community / Testimonials Section */
.testimonial-card { /* Using Bulma .card */
    border-left: 5px solid var(--accent-color-1);
    text-align: left; /* Testimonials often look better left-aligned */
}
.testimonial-card .card-content {
    text-align: left;
}
.testimonial-card .media { /* Bulma class */
    align-items: center;
}
.testimonial-card .media-left img.is-rounded {
    border: 3px solid var(--accent-color-2);
    box-shadow: var(--shadow-sm);
}
.testimonial-card .media-content .title {
    font-size: 1.2rem;
    margin-bottom: 0.1rem;
}
.testimonial-card .media-content .subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.testimonial-card .content {
    font-style: italic;
    font-size: 1.05em;
}
.testimonial-card .content time {
    display: block;
    font-size: 0.85em;
    color: var(--text-muted);
    margin-top: var(--spacing-sm);
    font-style: normal;
}
.community-cta {
    margin-top: var(--spacing-xl);
}
.community-cta .button .icon {
    font-size: 1.2em;
}

/* Return Policy Section */
#returns {
    background-color: var(--background-light-section);
}
#returns .content h4.title { /* Specificity for h4 inside .content */
    color: var(--primary-color);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    font-size: 1.4rem;
}

/* Contact Section & Form Styles */
.contact-section {
    background-color: var(--background-body);
}
.modern-input, .modern-textarea { /* For contact form inputs */
    font-family: var(--font-secondary);
    border-radius: 6px;
    border: 1px solid var(--input-border-color);
    box-shadow: none;
    padding: var(--spacing-md);
    font-size: 1em;
    transition: border-color var(--transition-speed-normal) ease, box-shadow var(--transition-speed-normal) ease;
}
.modern-input::placeholder, .modern-textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}
.modern-input:focus, .modern-textarea:focus {
    border-color: var(--input-focus-border-color);
    box-shadow: 0 0 0 0.125em var(--input-focus-shadow-color);
    outline: none;
}
.field label.label { /* Bulma class */
    color: var(--text-dark);
    font-weight: 600;
    font-family: var(--font-secondary);
    font-size: 1.05em;
    margin-bottom: var(--spacing-sm);
}
.contact-details {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background-color: var(--background-light-section);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}
.contact-details p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-details p .icon {
    margin-right: var(--spacing-sm);
    color: var(--primary-color);
    font-size: 1.3em;
}

/* Contact Page Specific (if different from section) */
.contact-details-page p .icon {
    width: 24px;
    text-align: center;
}
.contact-details-page a {
    font-weight: 600;
}

/* Footer */
.footer { /* Bulma class */
    background-color: var(--background-dark-footer);
    color: var(--text-light);
    padding: var(--spacing-xxl) var(--spacing-lg);
}
.footer .footer-logo-text {
    font-family: var(--font-primary);
    font-size: 2em;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}
.footer .title.is-5.footer-title {
    color: var(--text-light) !important;
    font-family: var(--font-primary);
    margin-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: var(--spacing-sm);
    font-size: 1.3rem;
    text-transform: uppercase;
}
.footer ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}
.footer ul li {
    margin-bottom: var(--spacing-sm);
}
.footer ul li a {
    color: var(--background-medium); /* Lighter gray for links */
    text-decoration: none;
    transition: color var(--transition-speed-fast) var(--ease-out-quad), padding-left var(--transition-speed-fast) var(--ease-out-quad);
    font-family: var(--font-secondary);
    font-weight: 400;
}
.footer ul li a:hover {
    color: var(--accent-color-1);
    padding-left: var(--spacing-xs); /* Slight indent on hover */
    text-decoration: none;
}
.footer .social-links-footer li a {
    font-weight: 600; /* Make social links slightly bolder */
    display: inline-flex; /* For potential icon alignment later if needed */
    align-items: center;
}
/* For newsletter form in footer */
.footer #newsletter-form .input {
    background-color: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
    color: var(--text-light);
}
.footer #newsletter-form .input::placeholder {
    color: rgba(255,255,255,0.5);
}
.footer #newsletter-form .button.is-primary {
    background-color: var(--accent-color-2); /* Use secondary accent for subscribe */
    border-color: var(--accent-color-2);
}
.footer #newsletter-form .button.is-primary:hover {
    background-color: var(--accent-color-2-darker);
    border-color: var(--accent-color-2-darker);
}

/* Page Specific Styles */
/* Success Page */
body[data-barba-namespace="success"] .main-container, /* If using barba namespaces */
.success-page-content-wrapper { /* Fallback class for success.html body or main wrapper */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.success-page-content-wrapper .header.is-fixed-top + main,
body[data-barba-namespace="success"] main { /* Ensure main content takes up space for centering */
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 52px; /* if header is fixed */
}
.success-page-content { /* The .container inside main */
    text-align: center;
    padding: var(--spacing-xl);
}
.success-page-content .image.is-128x128 { /* Bulma class */
    margin-bottom: var(--spacing-lg);
}
.success-page-content .title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}
.success-page-content .subtitle {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
}

/* Privacy & Terms Pages */
body[data-barba-namespace="privacy"] .page-content,
body[data-barba-namespace="terms"] .page-content,
.privacy-terms-page .page-content { /* Add class to main on these pages if not using Barba */
    padding-top: calc(52px + var(--spacing-xl)); /* 52px navbar height + extra padding */
}
.privacy-terms-page .content-section .title.is-1 {
    margin-bottom: var(--spacing-lg);
}
.privacy-terms-page .content-section .title.is-4 {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    color: var(--primary-color-darker);
}
.privacy-terms-page .content ul {
    list-style: disc;
    margin-left: var(--spacing-lg);
}


/* Animations & Transitions */
/* Scroll Animations (class added by JS - Intersection Observer) */
.animate-on-scroll {
    transform: translateY(40px);
    transition: opacity var(--transition-speed-slow) var(--ease-out-quad), transform var(--transition-speed-slow) var(--ease-out-quad);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax (Simple CSS for backgrounds with text overlay handled in HTML/JS) */
.hero-section[style*="background-image"], /* Target sections with inline bg image */
.parallax-background { /* Add this class to elements needing parallax */
    background-attachment: fixed; /* Basic parallax */
    /* JS needed for more advanced parallax (adjusting background-position) */
}
/* Ensure dark overlay for text on parallax backgrounds if not handled by ::before */
.parallax-background-with-text-overlay::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    z-index: 1;
}
.parallax-background-with-text-overlay > * {
    position: relative;
    z-index: 2;
}

/* Glassmorphism (Example for a component, e.g., a special card or navbar) */
.glass-effect {
    background: var(--glass-background);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

/* Asymmetric Balance - Utility classes or specific section styling */
/* Example: using Bulma's .columns with varying content or an offset */
.asymmetric-layout-example .columns {
    align-items: flex-start; /* Example */
}
.asymmetric-layout-example .column.is-offset-one-quarter { /* Bulma offset */
    /* Styles for the offset column to create asymmetry */
}
.asymmetric-image-text-split {
    display: flex;
    align-items: center;
}
.asymmetric-image-text-split .image-column {
    flex: 0 0 40%; /* Image takes less space */
    padding-right: var(--spacing-xl);
}
.asymmetric-image-text-split .text-column {
    flex: 1; /* Text takes more space */
}


/* Responsive Adjustments */
@media screen and (max-width: 1023px) { /* Tablet and below */
    .section-title {
        font-size: 2.2rem;
    }
    .section-subtitle {
        font-size: 1.1rem;
    }
    .navbar-menu { /* Bulma mobile menu background */
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: 0 8px 16px rgba(10,10,10,.1);
        padding: var(--spacing-sm) 0;
    }
    .navbar-item {
        padding: var(--spacing-md) var(--spacing-lg);
    }
    .asymmetric-image-text-split {
        flex-direction: column;
        text-align: center;
    }
    .asymmetric-image-text-split .image-column,
    .asymmetric-image-text-split .text-column {
        flex-basis: auto;
        padding-right: 0;
        margin-bottom: var(--spacing-lg);
    }
}

@media screen and (max-width: 768px) { /* Mobile */
    .section {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.3rem);
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: var(--spacing-lg);
    }
    .footer .columns {
        text-align: center;
    }
    .footer .columns .column:not(:last-child) {
        margin-bottom: var(--spacing-lg);
    }
    .footer .title.is-5.footer-title {
        text-align: center;
        border-bottom: none; /* Can look cleaner on mobile */
        padding-bottom: 0;
    }
     .footer .title.is-5.footer-title::after { /* Add line under centered title */
        content: '';
        display: block;
        width: 50px;
        height: 2px;
        background: var(--primary-color);
        margin: var(--spacing-sm) auto 0;
    }
    .page-content,
    .privacy-terms-page .page-content {
        padding-top: calc(52px + var(--spacing-md)); /* Adjust for mobile navbar */
    }
}

/* Cookie Popup (from previous prompt, ensure it works with the theme) */
#cookie-popup {
    background-color: rgba(29, 30, 32, 0.92) !important; /* Darker, more contrast */
    color: var(--text-light) !important;
    font-family: var(--font-secondary);
}
#cookie-popup p a {
    color: var(--accent-color-2) !important; /* Use a theme accent */
}
#cookie-popup #accept-cookie {
    background-color: var(--accent-color-1) !important;
    color: var(--text-on-accent) !important;
    font-family: var(--font-secondary);
    font-weight: 700;
    border-radius: 5px;
    padding: var(--spacing-sm) var(--spacing-lg);
    transition: background-color var(--transition-speed-fast) ease;
}
#cookie-popup #accept-cookie:hover {
    background-color: var(--accent-color-1-darker) !important;
}