/* ROOT VARIABLES ========================================== */
:root {
    --font-primary: 'Source Sans Pro', sans-serif;
    --font-secondary: 'Playfair Display', serif;

    /* Neumorphic Base & Text Colors */
    --color-background: #e0e5ec; /* Light, slightly cool gray */
    --color-background-accent-section: #d1d9e6; /* Slightly darker for accent sections */
    --color-text-primary: #31344b; /* Dark, desaturated blue */
    --color-text-secondary: #5b5f77; /* Lighter version for secondary text */
    --color-text-light: #ffffff;
    --color-text-on-accent: #2c3e50; /* Darker text for light accent backgrounds */

    /* Action & Accent Colors (Complementary Theme: Teal & Coral/Orange) */
    --color-primary-action: #00796b; /* Darker Teal for primary actions/links */
    --color-primary-action-hover: #004d40; /* Darker shade for hover */
    --color-accent-highlight: #e65100; /* Deep Orange/Coral for accents */
    --color-accent-highlight-light: #ff8a65; /* Lighter shade of accent */

    /* Generic Colors */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-border: #b0bec5;
    --color-success: #4CAF50;
    --color-error: #F44336;

    /* Neumorphic Shadows (for elements on --color-background) */
    --color-shadow-light-strong: rgba(255, 255, 255, 0.9);
    --color-shadow-dark-strong: rgba(163, 177, 198, 0.6);
    --shadow-neumorphic-outer: 6px 6px 12px var(--color-shadow-dark-strong), -6px -6px 12px var(--color-shadow-light-strong);
    --shadow-neumorphic-inner: inset 4px 4px 8px var(--color-shadow-dark-strong), inset -4px -4px 8px var(--color-shadow-light-strong);
    --shadow-neumorphic-outer-soft: 3px 3px 6px var(--color-shadow-dark-strong), -3px -3px 6px var(--color-shadow-light-strong);
    --shadow-neumorphic-inner-soft: inset 2px 2px 4px var(--color-shadow-dark-strong), inset -2px -2px 4px var(--color-shadow-light-strong);
    
    /* Box Shadows for general depth */
    --shadow-subtle: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 10px 25px rgba(0, 0, 0, 0.15);

    /* Borders & Radii */
    --border-radius-small: 8px;
    --border-radius-medium: 15px;
    --border-radius-large: 25px;

    /* Transitions */
    --transition-speed-fast: 0.2s;
    --transition-speed-normal: 0.3s;
    --transition-speed-slow: 0.5s;
    --transition-easing: ease-in-out;

    /* Spacing */
    --spacing-xs: 0.5rem;   /* 8px */
    --spacing-s: 1rem;    /* 16px */
    --spacing-m: 1.5rem;  /* 24px */
    --spacing-l: 2rem;    /* 32px */
    --spacing-xl: 3rem;   /* 48px */
    --spacing-xxl: 4rem;  /* 64px */

    /* Header Height */
    --header-height: 80px;
}

/* GLOBAL STYLES ========================================== */
*,
*::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);
    line-height: 1.7;
    color: var(--color-text-primary);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text-primary);
    margin-top: 0;
    margin-bottom: var(--spacing-m);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* Subtle shadow for better readability on neumorphic bg */
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; margin-bottom: var(--spacing-l); }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: var(--spacing-m);
    color: var(--color-text-secondary);
}

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

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

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

ul, ol {
    list-style-position: inside;
    margin-bottom: var(--spacing-m);
    padding-left: var(--spacing-s); /* Indent list items */
}

li {
    margin-bottom: var(--spacing-xs);
}

/* UTILITY CLASSES ========================================== */
.text-center { text-align: center; }
.text-light { color: var(--color-text-light) !important; }
.text-primary-action { color: var(--color-primary-action) !important; }
.text-accent-highlight { color: var(--color-accent-highlight) !important; }

/* Hide element visually but keep it accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* LAYOUT ========================================== */
.main-container {
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.page-container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-s);
    padding-right: var(--spacing-s);
}

.columns-layout {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-l);
}

.column {
    flex: 1 1 300px; /* Base for columns, allows wrapping */
}
.column-text {
    flex-basis: 55%; /* Asymmetrical balance example */
}
.column-image {
    flex-basis: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.column-image .image-container {
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-neumorphic-outer);
}
.column-image img {
    border-radius: var(--border-radius-medium); /* if image directly in container */
}

/* Section Styling */
.content-section {
    padding-top: var(--spacing-xxl);
    padding-bottom: var(--spacing-xxl);
}
.content-section.accent-bg {
    background-color: var(--color-background-accent-section);
    /* For neumorphic elements on this bg, shadows might need adjustment or use different variables */
}
.content-section .section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    color: var(--color-text-primary); /* Ensure high contrast for titles */
}
.content-section .section-intro {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-xl);
    color: var(--color-text-secondary);
}

/* Special page padding (privacy, terms) */
.privacy-page-content,
.terms-page-content,
.success-page-content,
.contacts-page-content,
.about-page-content { /* Assuming a wrapper div for content on these pages */
    padding-top: calc(var(--header-height) + var(--spacing-l));
    padding-bottom: var(--spacing-xl);
    min-height: calc(100vh - var(--header-height) - 100px); /* Adjust 100px for footer */
}
.success-page-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding: var(--spacing-l);
}
.success-page-content h1 {
    color: var(--color-primary-action);
}
.success-page-content .icon-success {
    font-size: 5rem;
    color: var(--color-success);
    margin-bottom: var(--spacing-m);
    /* Placeholder for an actual SVG or font icon */
}
.success-page-content .icon-success::before {
    content: '✓'; /* Simple checkmark */
    display: inline-block;
    border: 3px solid var(--color-success);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 70px; /* Vertically center the checkmark */
}


/* BUTTONS ========================================== */
.cta-button,
.cta-button-outline,
button[type="submit"] { /* Global button styles */
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    padding: var(--spacing-s) var(--spacing-l);
    border-radius: var(--border-radius-large); /* More rounded for Neumorphism */
    cursor: pointer;
    transition: all var(--transition-speed-normal) var(--transition-easing);
    border: 2px solid transparent;
    min-width: 180px;
}

.cta-button {
    background-color: var(--color-primary-action);
    color: var(--color-white);
    box-shadow: var(--shadow-neumorphic-outer-soft);
}
.cta-button:hover, .cta-button:focus {
    background-color: var(--color-primary-action-hover);
    color: var(--color-white);
    text-decoration: none;
    box-shadow: var(--shadow-neumorphic-inner-soft); /* Pressed effect */
    transform: translateY(1px);
}

.cta-button-outline {
    background-color: transparent;
    color: var(--color-primary-action);
    border-color: var(--color-primary-action);
    box-shadow: var(--shadow-neumorphic-outer-soft);
}
.cta-button-outline:hover, .cta-button-outline:focus {
    background-color: var(--color-primary-action);
    color: var(--color-white);
    text-decoration: none;
    box-shadow: var(--shadow-neumorphic-inner-soft);
    transform: translateY(1px);
}

.link-styled {
    font-weight: 600;
    color: var(--color-accent-highlight);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color var(--transition-speed-fast) var(--transition-easing);
}
.link-styled:hover {
    color: var(--color-primary-action);
}


/* HEADER & NAVIGATION ================================= */
.site-header {
    background-color: var(--color-background);
    padding: var(--spacing-s) 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08); /* Soft shadow for floating header */
    height: var(--header-height);
}

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

.logo {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-decoration: none;
}
.logo .logo-accent {
    color: var(--color-primary-action);
}
.logo:hover, .logo:focus {
    color: var(--color-primary-action);
    text-decoration: none;
}
.logo:hover .logo-accent, .logo:focus .logo-accent {
    color: var(--color-text-primary);
}

.main-nav .nav-list {
    list-style: none;
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
}

.main-nav .nav-list li {
    margin-left: var(--spacing-m);
    margin-bottom: 0;
}

.main-nav .nav-link {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--color-text-secondary);
    text-decoration: none;
    padding: var(--spacing-xs) var(--spacing-s);
    border-radius: var(--border-radius-small);
    transition: color var(--transition-speed-fast), background-color var(--transition-speed-fast);
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus,
.main-nav .nav-link.active { /* Add .active class via JS for current page */
    color: var(--color-primary-action);
    background-color: rgba(0, 121, 107, 0.1); /* Light teal bg */
    text-decoration: none;
}

/* Burger Menu (Mobile) */
.nav-toggle {
    display: none; /* Hidden on desktop */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001; /* Above nav list on mobile */
}

.hamburger {
    display: block;
    position: relative;
    width: 25px;
    height: 3px;
    background-color: var(--color-text-primary);
    border-radius: 3px;
    transition: transform var(--transition-speed-normal) var(--transition-easing);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color-text-primary);
    border-radius: 3px;
    transition: transform var(--transition-speed-normal) var(--transition-easing), top var(--transition-speed-normal) var(--transition-easing);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

/* Active state for burger menu */
.nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent; /* Middle bar disappears */
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}


/* FOOTER ========================================== */
.site-footer {
    background-color: #263238; /* Dark, sophisticated color for footer */
    color: #cfd8dc; /* Light text for contrast */
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-s);
    font-size: 0.9rem;
}

.site-footer a {
    color: #80cbc4; /* Tealish links */
    text-decoration: none;
}
.site-footer a:hover, .site-footer a:focus {
    color: var(--color-white);
    text-decoration: underline;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-l);
    margin-bottom: var(--spacing-l);
}

.footer-column h4 {
    font-family: var(--font-secondary);
    color: var(--color-white);
    margin-bottom: var(--spacing-m);
    font-size: 1.2rem;
}

.footer-nav-list, .footer-social-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.footer-nav-list li, .footer-social-list li {
    margin-bottom: var(--spacing-xs);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-m);
    border-top: 1px solid #455a64; /* Subtle separator */
    font-size: 0.85rem;
    color: #90a4ae;
}

/* Social media links in footer (text-based) */
.footer-social-list .footer-link {
    display: inline-block; /* Allows padding and consistent look */
    padding: var(--spacing-xs) 0;
}


/* HERO SECTION ========================================== */
.hero-section {
    min-height: 80vh; /* Responsive height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xxl) var(--spacing-s);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative; /* For overlay */
}
/* Overlay is applied via inline style linear-gradient in HTML */

.hero-content {
    position: relative; /* To be above overlay if any direct child */
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem; /* Larger for hero */
    color: var(--color-white); /* IMPORTANT: Hero text is white */
    margin-bottom: var(--spacing-m);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7); /* Ensure readability on varied backgrounds */
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--color-white); /* IMPORTANT: Hero text is white */
    margin-bottom: var(--spacing-l);
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.hero-section .cta-button {
    font-size: 1.1rem;
    padding: var(--spacing-m) var(--spacing-xl);
    background-color: var(--color-accent-highlight); /* Use accent for hero CTA */
    color: var(--color-white);
}
.hero-section .cta-button:hover, .hero-section .cta-button:focus {
    background-color: var(--color-primary-action); /* Switch to primary on hover */
    box-shadow: var(--shadow-neumorphic-inner);
}


/* CARDS ========================================== */
.cards-container, .pricing-cards-container, .testimonials-container, .resources-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-l);
}

.card, .resource-item { /* Base for all card-like elements */
    background-color: var(--color-background);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-neumorphic-outer);
    transition: transform var(--transition-speed-normal) var(--transition-easing), box-shadow var(--transition-speed-normal) var(--transition-easing);
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Ensure content stays within rounded corners */
}
.content-section.accent-bg .card { /* Cards on accent background */
    background-color: var(--color-background-accent-section);
    /* Shadows might need slight adjustment if base is too different */
     box-shadow: 6px 6px 12px rgba(0,0,0,0.1), -6px -6px 12px rgba(255,255,255,0.7); /* Custom for accent bg */
}


.card:hover, .resource-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong); /* More conventional shadow on hover for clarity */
}

.card-image { /* Container for image in card */
    width: 100%;
    height: 200px; /* Fixed height for consistent card appearance */
    overflow: hidden;
    /* margin-bottom: var(--spacing-m); Remove if card-content handles padding */
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crucial for consistent image display */
    transition: transform var(--transition-speed-slow) var(--transition-easing);
}
.card:hover .card-image img {
    transform: scale(1.05); /* Subtle zoom on hover */
}

.card-content {
    padding: var(--spacing-l);
    flex-grow: 1; /* Allows content to fill space if card heights vary */
    display: flex;
    flex-direction: column;
    text-align: center; /* Center text content in cards */
}
.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-s);
    color: var(--color-text-primary);
}
.card-content p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-m);
    flex-grow: 1; /* Pushes button to bottom if card content varies */
}
.card-content ul {
    text-align: left;
    margin-bottom: var(--spacing-m);
    padding-left: var(--spacing-m);
}
.card-content ul li {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}
.card-content .cta-button, .card-content .cta-button-outline, .card-content .modal-trigger {
    margin-top: auto; /* Pushes button to the bottom */
    align-self: center; /* Center button if text isn't centered */
}


/* Specific Card Types */
.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary-action);
    margin-bottom: var(--spacing-s);
}
.pricing-card.featured {
    border: 3px solid var(--color-accent-highlight);
    transform: scale(1.03); /* Make it stand out */
    box-shadow: var(--shadow-strong);
}
.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}
.pricing-card.featured h3 {
    color: var(--color-accent-highlight);
}
.pricing-note {
    text-align: center;
    margin-top: var(--spacing-l);
    font-style: italic;
    font-size: 0.9rem;
}

.testimonial-card cite {
    display: block;
    margin-top: var(--spacing-m);
    font-weight: 600;
    color: var(--color-primary-action);
    font-style: normal;
}
.testimonial-card p {
    font-style: italic;
}

.project-card .modal-trigger {
    background-color: transparent;
    border: 1px solid var(--color-primary-action);
    color: var(--color-primary-action);
    padding: var(--spacing-xs) var(--spacing-s);
    font-size: 0.9rem;
}
.project-card .modal-trigger:hover {
    background-color: var(--color-primary-action);
    color: var(--color-white);
}


/* FORMS ========================================== */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-background); /* Form on accent bg needs its own bg */
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-neumorphic-outer);
}
.content-section.accent-bg .contact-form {
     background-color: var(--color-background-accent-section); /* if form is on accent section, match its card styling */
     box-shadow: 6px 6px 12px rgba(0,0,0,0.1), -6px -6px 12px rgba(255,255,255,0.7);
}


.form-group {
    margin-bottom: var(--spacing-m);
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-primary);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-s);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-text-primary);
    background-color: var(--color-background); /* Match page background */
    border: 1px solid var(--color-border); /* Subtle border for definition */
    border-radius: var(--border-radius-small);
    box-shadow: var(--shadow-neumorphic-inner-soft); /* Inset shadow for neumorphic feel */
    transition: box-shadow var(--transition-speed-fast), border-color var(--transition-speed-fast);
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-action);
    box-shadow: var(--shadow-neumorphic-inner-soft), 0 0 0 2px rgba(0, 121, 107, 0.3); /* Focus ring */
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.form-group-checkbox {
    display: flex;
    align-items: center;
}
.form-group-checkbox input[type="checkbox"] {
    margin-right: var(--spacing-xs);
    width: 18px;
    height: 18px;
    accent-color: var(--color-primary-action); /* Modern way to style checkboxes */
}
.form-group-checkbox label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9rem;
}
.contact-form button[type="submit"] {
    width: 100%;
    padding: var(--spacing-m);
    font-size: 1.1rem;
    background-color: var(--color-accent-highlight);
    color: var(--color-white);
}
.contact-form button[type="submit"]:hover {
    background-color: var(--color-primary-action);
}


/* FAQ SECTION ========================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background-color: var(--color-background);
    margin-bottom: var(--spacing-s);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-neumorphic-outer-soft);
    overflow: hidden; /* For smooth open/close */
}
.content-section.accent-bg .faq-item {
    background-color: var(--color-background-accent-section);
}

.faq-item summary {
    font-weight: 600;
    padding: var(--spacing-m);
    cursor: pointer;
    list-style: none; /* Remove default marker */
    position: relative;
    color: var(--color-text-primary);
    transition: background-color var(--transition-speed-fast);
}
.faq-item summary:hover {
    background-color: rgba(0,0,0,0.03);
}
.faq-item summary::-webkit-details-marker { display: none; } /* Chrome/Safari */
.faq-item summary::marker { display: none; } /* Firefox */

.faq-item summary::after { /* Custom arrow */
    content: '+';
    font-size: 1.5rem;
    position: absolute;
    right: var(--spacing-m);
    top: 50%;
    transform: translateY(-50%);
    transition: transform var(--transition-speed-normal);
    color: var(--color-primary-action);
}
.faq-item[open] summary::after {
    content: '−'; /* Change to minus when open */
}
.faq-item p {
    padding: 0 var(--spacing-m) var(--spacing-m) var(--spacing-m);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* GALLERY SECTION ========================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-m);
}
.gallery-item {
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-neumorphic-outer);
    transition: transform var(--transition-speed-normal), box-shadow var(--transition-speed-normal);
}
.gallery-item:hover {
    transform: scale(1.03) translateY(-3px);
    box-shadow: var(--shadow-strong);
}
.gallery-item img {
    width: 100%;
    height: 100%; /* Make images fill the grid item */
    object-fit: cover;
}

/* BEHIND THE SCENES (STEPS) ================================= */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-l);
    text-align: center;
}
.step-item {
    padding: var(--spacing-m);
    /* Neumorphic effect can be added if desired, but might be too much for simple steps */
}
.step-icon-container {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-m) auto;
    background-color: rgba(0, 121, 107, 0.1); /* Light teal bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-neumorphic-inner-soft);
}
.step-icon-container img { /* Assuming SVG icons might have their own colors */
    max-width: 50%;
    max-height: 50%;
}
.step-item h3 {
    font-size: 1.3rem;
    color: var(--color-primary-action);
}

/* STATS WIDGETS ========================================== */
.stats-widgets-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: var(--spacing-m);
    margin-top: var(--spacing-xl);
    padding: var(--spacing-l) 0;
    /* background-color: rgba(0,0,0,0.02); */
    border-radius: var(--border-radius-medium);
}
.stat-widget {
    background-color: var(--color-background);
    padding: var(--spacing-m) var(--spacing-l);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-neumorphic-outer-soft);
    text-align: center;
    min-width: 180px;
    flex: 1;
}
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent-highlight);
    margin-bottom: var(--spacing-xs);
}
.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* CAREERS & COMMUNITY SECTION ========================================== */
.careers-content ul, .community-content ul {
    list-style: disc;
    padding-left: var(--spacing-l);
}
.job-openings h4 {
    margin-top: var(--spacing-l);
    margin-bottom: var(--spacing-s);
}

/* EXTERNAL RESOURCES ====================================== */
.resource-item h3 {
    font-size: 1.2rem;
}
.resource-item h3 a {
    color: var(--color-text-primary);
}
.resource-item h3 a:hover {
    color: var(--color-primary-action);
}
.resource-item p {
    font-size: 0.9rem;
}


/* MODAL WINDOWS ========================================== */
.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); /* Glassmorphism touch */
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--color-background);
    margin: 10vh auto; /* 10% from top and centered */
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-neumorphic-outer), 0px 10px 30px rgba(0,0,0,0.2); /* Neumorphic + drop shadow for pop */
    width: 90%;
    max-width: 700px;
    position: relative;
    animation: modalOpen var(--transition-speed-slow) var(--transition-easing);
}

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

.close-button {
    color: var(--color-text-secondary);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

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

#modalTitle {
    margin-top: 0;
    margin-bottom: var(--spacing-m);
    color: var(--color-primary-action);
}
#modalImage {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: var(--border-radius-small);
    margin-top: var(--spacing-m);
    box-shadow: var(--shadow-subtle);
}


/* COOKIE CONSENT POPUP (from HTML inline styles, basic structure) ============ */
/* Basic styling here if needed, but mostly controlled by inline styles in HTML for simplicity as requested */
#cookieConsentPopup {
    /* Styles are mostly inline in the HTML as per prompt */
    /* Add any additional default styling if necessary */
}
#cookieConsentPopup p a { /* Ensure link in cookie popup is styled */
    color: #a0d8f8; /* Matching the inline style given */
    text-decoration: underline;
}
#cookieConsentPopup p a:hover {
    color: var(--color-white);
}

/* RESPONSIVE DESIGN ========================================== */
@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.1rem; }
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.8rem; }

    .columns-layout {
        flex-direction: column;
    }
    .column-text, .column-image {
        flex-basis: 100%; /* Stack columns */
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }

    /* Mobile Navigation */
    .nav-toggle {
        display: block; /* Show burger icon */
    }
    .main-nav .nav-list {
        display: none; /* Hide nav list by default */
        position: absolute;
        top: var(--header-height); /* Position below header */
        left: 0;
        width: 100%;
        background-color: var(--color-background);
        flex-direction: column;
        align-items: center;
        padding: var(--spacing-l) 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        border-top: 1px solid var(--color-border);
    }
    .main-nav .nav-list.nav-list--visible {
        display: flex; /* Show when active */
    }
    .main-nav .nav-list li {
        margin-left: 0;
        margin-bottom: var(--spacing-m);
        width: 100%;
        text-align: center;
    }
    .main-nav .nav-link {
        display: block; /* Make links full width for easier tapping */
        padding: var(--spacing-m);
    }

    .footer-content {
        grid-template-columns: 1fr; /* Stack footer columns */
        text-align: center;
    }
    .footer-column ul {
        justify-content: center;
    }

    .pricing-card.featured {
        transform: scale(1); /* Reset featured scale on mobile if too much */
    }
     .content-section {
        padding-top: var(--spacing-xl);
        padding-bottom: var(--spacing-xl);
    }
     .section-title {
        margin-bottom: var(--spacing-l);
    }
    .modal-content {
        margin: 5vh auto;
        width: 95%;
    }
}

@media (max-width: 480px) {
    html { font-size: 15px; } /* Slightly smaller base font for small screens */
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.9rem; }
    .cta-button, .cta-button-outline, button[type="submit"] {
        padding: var(--spacing-s) var(--spacing-m);
        font-size: 0.9rem;
        min-width: 150px;
    }
     .page-container {
        width: 95%;
    }
}

/* Print styles (basic) */
@media print {
  body {
    background-color: var(--color-white);
    color: var(--color-black);
  }
  .site-header, .site-footer, .nav-toggle, .cta-button, .contact-form, .hero-section .cta-button {
    display: none !important;
  }
  a {
    color: var(--color-black);
    text-decoration: underline;
  }
  .page-container {
    width: 100%;
    max-width: none;
    padding: 0;
  }
}