/* style.css */

/* -------------------
   CSS Variables
------------------- */
:root {
    /* Pastel Color Scheme */
    --color-background: #f4f1ea; /* Soft, textured pastel cream/beige */
    --color-background-light-accent: #faf6f0; /* Slightly lighter for accented sections */
    --color-primary: #b0c4de; /* Light steel blue pastel */
    --color-accent: #f7c5a8; /* Soft peach pastel */
    --color-accent-dark: #e8a982; /* Darker peach for hover/active */
    --color-text-primary: #4a4a4a; /* Dark grey for main text */
    --color-text-secondary: #6b6b6b; /* Medium grey for less important text */
    --color-text-headings: #333333; /* Darker grey for headings */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-success: #90EE90; /* Light green pastel */
    --color-error: #FFA07A; /* Light salmon pastel */

    /* Neumorphic Shadows (derived from background) */
    --neumorphic-shadow-light: rgba(255, 255, 255, 0.7); /* Lighter shadow based on light source */
    --neumorphic-shadow-dark: rgba(190, 180, 165, 0.4); /* Darker shadow based on light source */
    --neumorphic-shadow-distance: 8px;
    --neumorphic-shadow-blur: 16px;
    --neumorphic-inset-shadow-distance: 5px;
    --neumorphic-inset-shadow-blur: 10px;

    /* Fonts */
    --font-primary: 'DM Sans', sans-serif;
    --font-headings: 'Space Grotesk', sans-serif;

    /* Spacing & Sizing */
    --header-height: 80px;
    --border-radius-base: 15px;
    --border-radius-small: 10px;
    --transition-speed: 0.3s;

    /* Textures */
    --texture-subtle-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23d3c7b9' fill-opacity='0.05' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E"); /* Subtle noise texture */
}

/* -------------------
   Global Styles & Resets
------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-primary);
    color: var(--color-text-primary);
    background-color: var(--color-background);
    background-image: var(--texture-subtle-noise);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Apply padding for fixed header on specific pages */
.legal-page-content,
.contacts-page-content,
.about-page-content,
.success-page-content { /* success-page-content for consistency, though it has its own layout */
    padding-top: calc(var(--header-height) + 30px); /* Header height + some margin */
}


/* -------------------
   Typography
------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--color-text-headings);
    margin-bottom: 0.75em;
    line-height: 1.2;
    font-weight: 700;
    text-align: center; /* Centered by default for section titles */
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; margin-top: 1.5em; } /* Section titles */
h3 { font-size: 1.6rem; } /* Card titles, modal titles */
h4 { font-size: 1.2rem; } /* Footer headings */

p {
    margin-bottom: 1.25em;
    color: var(--color-text-primary);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover, a:focus {
    color: var(--color-accent-dark);
    text-decoration: underline;
}

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

ul, ol {
    list-style: none;
    padding-left: 0;
}

/* -------------------
   Layout & Containers
------------------- */
.main-container {
    width: 100%;
    overflow: hidden; /* For parallax and animations */
}

.page-content-wrapper {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.columns-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Space between columns */
    align-items: flex-start; /* Align items to the top */
}

.column {
    flex-basis: 100%; /* Default to full width on small screens */
}

.column.is-two-thirds {
    flex-grow: 2; /* Takes up 2/3 space when possible */
    flex-basis: 0; /* Allows flex-grow to work */
    min-width: 60%; /* Ensure it's at least 60% */
}
.column:not(.is-two-thirds) {
    flex-grow: 1;
    flex-basis: 0;
    min-width: 30%;
}

@media (min-width: 768px) {
    .column.is-two-thirds {
        flex-basis: calc(66.666% - 15px); /* Adjust for gap */
    }
    .column:not(.is-two-thirds) {
         flex-basis: calc(33.333% - 15px); /* Adjust for gap */
    }
}


/* -------------------
   Neumorphic Base Styles
------------------- */
.neumorphic-button,
.neumorphic-panel,
.neumorphic-input,
.neumorphic-card,
.neumorphic-image-frame,
.neumorphic-panel-inset {
    background-color: var(--color-background);
    border-radius: var(--border-radius-base);
    transition: box-shadow var(--transition-speed) ease, transform var(--transition-speed) ease;
}

/* Outset Shadow (Default for buttons, panels, cards) */
.neumorphic-button,
.neumorphic-panel,
.neumorphic-card,
.neumorphic-image-frame {
    box-shadow: var(--neumorphic-shadow-distance) var(--neumorphic-shadow-distance) var(--neumorphic-shadow-blur) var(--neumorphic-shadow-dark),
                calc(-1 * var(--neumorphic-shadow-distance)) calc(-1 * var(--neumorphic-shadow-distance)) var(--neumorphic-shadow-blur) var(--neumorphic-shadow-light);
}

.neumorphic-button:hover,
.neumorphic-card:hover,
.neumorphic-image-frame:hover {
    transform: translateY(-3px);
    box-shadow: calc(var(--neumorphic-shadow-distance) + 3px) calc(var(--neumorphic-shadow-distance) + 3px) calc(var(--neumorphic-shadow-blur) + 5px) var(--neumorphic-shadow-dark),
                calc(-1 * (var(--neumorphic-shadow-distance) + 3px)) calc(-1 * (var(--neumorphic-shadow-distance) + 3px)) calc(var(--neumorphic-shadow-blur) + 5px) var(--neumorphic-shadow-light);
}

.neumorphic-button:active {
    transform: translateY(1px);
    box-shadow: inset var(--neumorphic-inset-shadow-distance) var(--neumorphic-inset-shadow-distance) var(--neumorphic-inset-shadow-blur) var(--neumorphic-shadow-dark),
                inset calc(-1 * var(--neumorphic-inset-shadow-distance)) calc(-1 * var(--neumorphic-inset-shadow-distance)) var(--neumorphic-inset-shadow-blur) var(--neumorphic-shadow-light);
}

/* Inset Shadow (For inputs, specific panels) */
.neumorphic-input,
.neumorphic-panel-inset {
    box-shadow: inset var(--neumorphic-inset-shadow-distance) var(--neumorphic-inset-shadow-distance) var(--neumorphic-inset-shadow-blur) var(--neumorphic-shadow-dark),
                inset calc(-1 * var(--neumorphic-inset-shadow-distance)) calc(-1 * var(--neumorphic-inset-shadow-distance)) var(--neumorphic-inset-shadow-blur) var(--neumorphic-shadow-light);
}

.neumorphic-input:focus {
    outline: none;
    box-shadow: inset calc(var(--neumorphic-inset-shadow-distance) + 2px) calc(var(--neumorphic-inset-shadow-distance) + 2px) calc(var(--neumorphic-inset-shadow-blur) + 3px) var(--neumorphic-shadow-dark),
                inset calc(-1 * (var(--neumorphic-inset-shadow-distance) + 2px)) calc(-1 * (var(--neumorphic-inset-shadow-distance) + 2px)) calc(var(--neumorphic-inset-shadow-blur) + 3px) var(--neumorphic-shadow-light),
                0 0 0 2px var(--color-primary); /* Focus ring */
}


/* -------------------
   Global Button Styles
------------------- */
button,
input[type="submit"],
input[type="button"],
.neumorphic-button,
.neumorphic-button-small {
    display: inline-block;
    padding: 0.8em 1.8em;
    font-family: var(--font-headings);
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text-headings);
    background-color: var(--color-background); /* Base for neumorphism */
    border: none;
    border-radius: var(--border-radius-base);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    line-height: 1.4; /* Ensure text is vertically centered */
}

.neumorphic-button.hero-cta {
    font-size: 1.1rem;
    padding: 1em 2.2em;
    background-color: var(--color-accent); /* Standout color for hero CTA */
    color: var(--color-white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.neumorphic-button.hero-cta:hover {
    background-color: var(--color-accent-dark);
}


.neumorphic-button-small {
    padding: 0.6em 1.2em;
    font-size: 0.9rem;
    border-radius: var(--border-radius-small);
}

.link-button { /* For text links styled as buttons */
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
}
.link-button:hover {
    text-decoration: none; /* Override default link hover */
}


/* -------------------
   Header & Navigation
------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(244, 241, 234, 0.85); /* Semi-transparent background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: var(--header-height);
    transition: background-color var(--transition-speed) ease;
}

.site-header.scrolled {
    background-color: rgba(244, 241, 234, 0.98); /* More opaque on scroll */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    max-height: 45px; /* Adjust as needed */
    width: auto;
}

.main-navigation .nav-links {
    display: flex;
    list-style: none;
}

.main-navigation .nav-links li {
    margin-left: 25px;
}

.main-navigation .nav-links a {
    font-family: var(--font-headings);
    color: var(--color-text-headings);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    padding: 5px 0;
    position: relative;
    transition: color var(--transition-speed) ease;
}

.main-navigation .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-speed) ease;
}

.main-navigation .nav-links a:hover,
.main-navigation .nav-links a.active-link {
    color: var(--color-accent-dark);
}

.main-navigation .nav-links a:hover::after,
.main-navigation .nav-links a.active-link::after {
    width: 100%;
}

.burger-menu {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001; /* Above nav links in mobile */
}

.burger-menu .burger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-text-headings);
    margin: 5px 0;
    border-radius: 3px;
    transition: all var(--transition-speed) ease;
}

/* Burger menu active state (for JS) */
.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}
.burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* -------------------
   Hero Section
------------------- */
.hero-section {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--color-white); /* Ensured by HTML style, reinforced here */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)); /* Dark overlay for text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 1.5em;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

#particle-container-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Behind content, above overlay if needed, or behind overlay */
}

/* -------------------
   Content Sections (General)
------------------- */
.content-section {
    padding: 60px 0;
}

.content-section.section-light-accent {
    background-color: var(--color-background-light-accent);
}

.section-title {
    margin-bottom: 1em; /* Standardized bottom margin for section titles */
    color: var(--color-text-headings);
    text-align: center;
}
.section-intro {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5em;
}


/* -------------------
   About Us Section
------------------- */
#about-us .columns-container {
    align-items: center; /* Vertically align content if columns have different heights */
}

#about-us .image-container img {
    border-radius: var(--border-radius-base);
}
#about-us .image-container {
    padding: 10px; /* Padding inside the frame */
}

/* -------------------
   Advantages / Cards Section
------------------- */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2em;
}

.card.neumorphic-card {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center card image and content block */
    text-align: center; /* Center text within card-content */
}

.card .card-image { /* This is the .image-container for cards */
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    margin-bottom: 20px;
    border-radius: var(--border-radius-small);
    overflow: hidden; /* Crucial for object-fit and border-radius */
    display: flex; /* To center the image if it's smaller, though object-fit cover usually handles this */
    justify-content: center;
    align-items: center;
}

.card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area, might crop */
    border-radius: var(--border-radius-small); /* Should be applied here if not on parent */
}

.card .card-content {
    width: 100%; /* Ensure content block takes full width of card padding */
}

.card .card-title {
    font-size: 1.4rem;
    color: var(--color-text-headings);
    margin-bottom: 0.7em;
}

.card p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 1em;
}

.card .neumorphic-button-small {
    margin-top: auto; /* Pushes button to bottom if card content varies */
}


/* -------------------
   Case Studies Modals
------------------- */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000; /* Above everything else */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if content is too long */
    background-color: rgba(0,0,0,0.6); /* Dimmed background */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: var(--color-background); /* Neumorphic base */
    margin: 8% auto; /* Centered, with space from top */
    padding: 30px 40px;
    border-radius: var(--border-radius-base);
    width: 80%;
    max-width: 700px;
    /* Neumorphic shadow applied by .neumorphic-panel class */
    animation: fadeInModal 0.4s ease-out;
}

@keyframes fadeInModal {
    from { opacity: 0; transform: translateY(-30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}


.close-modal-button {
    color: var(--color-text-secondary);
    float: right;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    transition: color var(--transition-speed) ease;
}

.close-modal-button:hover,
.close-modal-button:focus {
    color: var(--color-text-headings);
    text-decoration: none;
    cursor: pointer;
}

.modal-title {
    margin-top: 0;
    margin-bottom: 1em;
    text-align: left; /* Modal titles usually left aligned */
    color: var(--color-text-headings);
}

.modal-image {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: var(--border-radius-small);
    margin-bottom: 1.5em;
}

.modal-content p {
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
}

/* -------------------
   Clientele Section
------------------- */
.client-logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 2em;
}

.client-logo.neumorphic-image-frame {
    padding: 15px; /* Padding around the logo inside the frame */
    background-color: var(--color-background-light-accent); /* Slightly different background for logos if needed */
}

.client-logo img {
    max-height: 60px; /* Adjust for desired logo size */
    width: auto;
    filter: grayscale(30%) opacity(0.8); /* Subtle effect for logos */
    transition: filter var(--transition-speed) ease;
}

.client-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

/* -------------------
   Resources Section
------------------- */
.resources-list {
    display: grid;
    grid-template-columns: 1fr; /* Single column list */
    gap: 20px;
    margin-top: 2em;
}

.resource-item.neumorphic-panel-inset {
    padding: 25px;
    text-align: left;
}

.resource-item .resource-title {
    margin-top: 0;
    margin-bottom: 0.5em;
    text-align: left;
}

.resource-item .resource-title a {
    font-size: 1.2rem;
    color: var(--color-text-headings);
}
.resource-item .resource-title a:hover {
    color: var(--color-accent-dark);
}

.resource-item .resource-description {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

/* -------------------
   Press Section
------------------- */
.press-mentions-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2em;
}

.press-mention.neumorphic-card {
    padding: 30px;
    text-align: left;
}

.press-quote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-text-primary);
    margin-bottom: 1em;
    border-left: 3px solid var(--color-primary);
    padding-left: 15px;
}
.press-quote p {
    margin-bottom: 0;
}

.press-source {
    font-weight: 500;
    color: var(--color-text-secondary);
    text-align: right;
    font-size: 0.9rem;
}

/* -------------------
   Contact Section
------------------- */
.contact-form-container.neumorphic-panel {
    padding: 30px 40px;
    max-width: 700px;
    margin: 2em auto 0 auto; /* Centered */
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-weight: 500;
    color: var(--color-text-headings);
    margin-bottom: 8px;
    text-align: left;
}

.neumorphic-input,
textarea.neumorphic-input {
    width: 100%;
    padding: 12px 15px;
    border: none; /* Neumorphic handles border appearance via shadow */
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text-primary);
    background-color: var(--color-background); /* Ensure base for inset shadow */
}

textarea.neumorphic-input {
    min-height: 120px;
    resize: vertical;
}

.form-submit-button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}
.form-submit-button:hover {
    background-color: var(--color-accent-dark); /* Change to an accent for submit */
    color: var(--color-white);
}

/* Toggle Switch */
.toggle-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.neumorphic-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.neumorphic-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc; /* Default off state */
    transition: .4s;
    border-radius: 34px;
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.1),
                inset -2px -2px 4px rgba(255,255,255,0.8);
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0,0,0,0.2), 0 0 5px rgba(0,0,0,0.1);
}

input:checked + .slider {
    background-color: var(--color-primary);
    box-shadow: inset 3px 3px 5px var(--neumorphic-shadow-dark),
                inset -3px -3px 5px var(--neumorphic-shadow-light);
}
input:checked + .slider:before {
    transform: translateX(26px);
    background-color: var(--color-background); /* Match neumorphic style */
    box-shadow: 2px 2px 4px var(--neumorphic-shadow-dark),
                -2px -2px 4px var(--neumorphic-shadow-light);
}

.contact-details {
    margin-top: 40px;
    text-align: center;
}
.contact-details h3 {
    color: var(--color-text-headings);
}
.contact-details p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    margin-bottom: 0.5em;
}
.contact-details p a {
    color: var(--color-primary);
}
.contact-details p a:hover {
    color: var(--color-accent-dark);
}

/* -------------------
   Footer
------------------- */
.site-footer {
    background-color: var(--color-background-light-accent); /* Slightly different shade for footer */
    padding: 40px 0 20px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
    text-align: left; /* Align text left within footer columns */
}

.footer-nav, .footer-social, .footer-contact-info {
    flex: 1;
    min-width: 200px; /* Minimum width for footer columns */
}

.footer-heading {
    font-size: 1.1rem;
    color: var(--color-text-headings);
    margin-bottom: 1em;
    text-align: left;
}

.footer-nav ul li, .footer-social ul li {
    margin-bottom: 0.8em;
}

.footer-nav ul a, .footer-social ul a {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}
.footer-nav ul a:hover, .footer-social ul a:hover {
    color: var(--color-accent-dark);
    text-decoration: underline;
}

.footer-contact-info p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.5em;
}
.footer-contact-info p a {
    color: var(--color-text-secondary);
}
.footer-contact-info p a:hover {
    color: var(--color-accent-dark);
}

.footer-copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}


/* -------------------
   Success Page (success.html)
------------------- */
.success-page-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--header-height)); /* Full viewport height minus header */
    text-align: center;
    padding: 40px 20px;
}

.success-content {
    background-color: var(--color-background);
    padding: 40px 50px;
    border-radius: var(--border-radius-base);
    max-width: 600px;
    /* Neumorphic shadow applied by .neumorphic-panel class */
}
.success-content .icon {
    font-size: 4rem; /* Placeholder for icon */
    color: var(--color-success);
    margin-bottom: 20px;
}
.success-content h1 {
    color: var(--color-text-headings);
    margin-bottom: 0.5em;
}
.success-content p {
    color: var(--color-text-primary);
    margin-bottom: 1.5em;
}


/* -------------------
   Cookie Consent Popup
------------------- */
/* Styles are in HTML as per prompt, but can be moved here and refined */


/* -------------------
   Responsive Design
------------------- */
@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.1rem; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.9rem; }
}

@media (max-width: 768px) {
    .main-navigation .nav-links {
        display: none; /* Hide on mobile by default */
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--color-background); /* Solid background for mobile menu */
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 15px 0;
        text-align: center;
    }
    .main-navigation .nav-links.active {
        display: flex; /* Show when burger is clicked */
    }
    .main-navigation .nav-links li {
        margin: 10px 0;
    }
    .burger-menu {
        display: block; /* Show burger on mobile */
    }

    .columns-container {
        flex-direction: column; /* Stack columns on smaller screens */
    }
    .column.is-two-thirds, .column:not(.is-two-thirds) {
        flex-basis: 100%; /* Full width for all columns */
        min-width: 100%;
    }
    #about-us .image-container {
        margin-top: 20px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-nav, .footer-social, .footer-contact-info {
        width: 100%;
        max-width: 300px; /* Limit width in centered mobile view */
        text-align: center;
    }
    .footer-heading {
        text-align: center;
    }

    .modal-content {
        width: 90%;
        margin: 15% auto;
        padding: 20px;
    }
    .contact-form-container.neumorphic-panel {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .cards-container {
        grid-template-columns: 1fr; /* Single column for cards */
    }
    .content-section {
        padding: 40px 0;
    }
    .page-content-wrapper {
        width: 95%;
    }
}