/* style.css */

:root {
    /* Color Palette: Pastel Retro with Biomorphic Tones */
    --color-primary: #A0D2DB; /* Soft Cyan Blue */
    --color-primary-dark: #7FA8B0;
    --color-secondary: #FFC8A2; /* Soft Peach */
    --color-secondary-dark: #DDA07A;
    --color-accent: #C3AED6; /* Soft Lavender */
    --color-accent-dark: #A590B8;
    --color-background-light: #FDF0E0; /* Creamy Off-White */
    --color-background-medium: #f3e9d8;
    --color-background-dark: #EADBC8; /* Light Tan for footers/contrasting sections */
    --color-text-dark: #3D352A; /* Dark Brown for high contrast */
    --color-text-light: #FAF0E6; /* Light Cream for dark backgrounds */
    --color-text-medium: #786D5F; /* Warm Gray */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-success: #4CAF50;
    --color-error: #F44336;

    /* Fonts */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'IBM Plex Sans', sans-serif;

    /* Animations & Transitions */
    --transition-speed-fast: 0.2s;
    --transition-speed-medium: 0.4s;
    --transition-speed-slow: 0.6s;
    --animation-bounce-factor: 1.05;
    --animation-timing-bouncy: cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Bouncy effect */

    /* Spacing */
    --spacing-small: 0.5rem;
    --spacing-medium: 1rem;
    --spacing-large: 2rem;
    --spacing-xlarge: 3rem;

    /* Borders & Shadows */
    --border-radius-soft: 8px;
    --border-radius-biomorphic: 15px 35px; /* Example, can be more complex */
    --box-shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-strong: 0 8px 25px rgba(0, 0, 0, 0.15);
    --text-shadow-subtle: 1px 1px 3px rgba(0,0,0,0.3);
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-background-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll from AOS animations */
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

/* Headings */
h1, h2, h3, h4, h5, h6, .title, .subtitle {
    font-family: var(--font-heading);
    color: var(--color-text-dark); /* Default dark for good contrast */
    font-weight: 700;
}

.title {
    color: var(--color-text-dark) !important; /* Bulma override */
}

.subtitle {
    color: var(--color-text-medium) !important; /* Bulma override */
}

.section-title {
    margin-bottom: var(--spacing-large) !important;
    color: #222222 !important; /* Extra dark for section titles */
    text-shadow: var(--text-shadow-subtle);
}
.section-title.has-text-white { /* For dark backgrounds */
    color: var(--color-white) !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}


p {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-medium);
}

a {
    color: var(--color-primary-dark);
    transition: color var(--transition-speed-fast) ease-out;
    font-weight: 500;
}

a:hover {
    color: var(--color-secondary-dark);
    text-decoration: none; /* Remove underline from Bulma for custom styling */
}

/* Buttons - Global Styling */
.button, button, input[type="submit"], input[type="button"] {
    font-family: var(--font-body);
    font-weight: 700;
    border-radius: var(--border-radius-soft) !important; /* Softer retro feel */
    padding: 0.8em 1.8em !important;
    transition: transform var(--transition-speed-fast) var(--animation-timing-bouncy),
                background-color var(--transition-speed-fast) ease-out,
                box-shadow var(--transition-speed-fast) ease-out !important;
    border: none !important; /* Remove default borders */
    box-shadow: var(--box-shadow-soft);
    cursor: pointer;
}

.button:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    transform: scale(var(--animation-bounce-factor));
    box-shadow: var(--box-shadow-strong) !important;
}

.button:active, button:active, input[type="submit"]:active, input[type="button"]:active {
    transform: scale(0.98);
}

.button.is-primary {
    background-color: var(--color-primary) !important;
    color: var(--color-text-dark) !important;
}
.button.is-primary:hover {
    background-color: var(--color-primary-dark) !important;
}

.button.is-secondary { /* Custom class if needed */
    background-color: var(--color-secondary) !important;
    color: var(--color-text-dark) !important;
}
.button.is-secondary:hover {
    background-color: var(--color-secondary-dark) !important;
}

.button.is-link { /* Bulma class, restyled */
    background-color: var(--color-accent) !important;
    color: var(--color-white) !important;
}
.button.is-link:hover {
    background-color: var(--color-accent-dark) !important;
}

.button.is-rounded {
    border-radius: 2999px !important; /* Bulma's way for fully rounded */
}

/* Links as buttons */
.link-button {
    display: inline-block;
    padding: 0.6em 1.2em;
    background-color: var(--color-accent);
    color: var(--color-white) !important;
    border-radius: var(--border-radius-soft);
    text-decoration: none;
    font-weight: 700;
    transition: transform var(--transition-speed-fast) var(--animation-timing-bouncy),
                background-color var(--transition-speed-fast) ease-out;
}
.link-button:hover {
    background-color: var(--color-accent-dark);
    transform: scale(var(--animation-bounce-factor));
    color: var(--color-white) !important;
}

/* Read More Links */
.read-more-link {
    font-weight: 700;
    color: var(--color-primary-dark);
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
}
.read-more-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: width var(--transition-speed-medium) ease-out;
}
.read-more-link:hover::after {
    width: 100%;
}
.read-more-link i { /* For potential arrow icon */
    margin-left: var(--spacing-small);
    transition: transform var(--transition-speed-fast) ease-out;
}
.read-more-link:hover i {
    transform: translateX(3px);
}

/* Section Styling */
.section {
    padding: var(--spacing-xlarge) var(--spacing-medium); /* Default padding for sections */
}

.has-background-light-pastel {
    background-color: var(--color-background-medium);
}
.has-background-dark-pastel {
    background-color: var(--color-background-dark);
}

/* Header & Navbar */
.header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    background-color: rgba(253, 240, 224, 0.85); /* Semi-transparent light background */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar {
    background-color: transparent !important; /* Override Bulma */
}
.navbar-item, .navbar-link {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--color-text-dark) !important;
    transition: color var(--transition-speed-fast) ease-out;
}
.navbar-item:hover, .navbar-link:hover {
    background-color: transparent !important; /* Override Bulma */
    color: var(--color-primary-dark) !important;
}
.navbar-item img {
    max-height: 3.5rem !important; /* Adjust logo size */
}
.navbar-burger {
    color: var(--color-text-dark) !important;
}
.navbar-dropdown {
    background-color: var(--color-background-light) !important;
    border-top: 2px solid var(--color-primary) !important;
    border-radius: 0 0 var(--border-radius-soft) var(--border-radius-soft) !important;
    box-shadow: var(--box-shadow-soft);
}
.navbar-dropdown .navbar-item {
    padding: 0.75rem 1.25rem;
}

/* Hero Section */
#hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative; /* For parallax or pseudo-elements */
    /* Parallax effect (simple CSS version) */
    /* background-attachment: fixed; - Can cause issues on mobile, use JS for better parallax */
}
#hero .hero-body {
    padding-top: 10rem; /* Adjust for fixed header */
    padding-bottom: 5rem;
    position: relative; /* For z-index stacking of content */
    z-index: 2;
}
#hero .title, #hero .subtitle {
    color: var(--color-white) !important; /* STROGO: Text in hero section must be white */
    text-shadow: var(--text-shadow-subtle);
}
.biomorphic-divider-bottom {
    position: absolute;
    bottom: -1px; /* Overlap slightly to avoid gaps */
    left: 0;
    width: 100%;
    height: 80px; /* Adjust height as needed */
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' style='fill:%23FDF0E0;'%3E%3C/path%3E%3C/svg%3E"); /* Creamy Off-White */
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}
@media screen and (max-width: 768px) {
    .biomorphic-divider-bottom {
        height: 50px;
    }
    #hero .hero-body {
        padding-top: 8rem;
    }
}

/* Mission Section */
#mision .content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-dark);
}

/* Our Process (Timeline) */
.timeline-container {
    position: relative;
    margin-top: var(--spacing-large);
}
.timeline-container::before { /* The central line */
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--color-accent);
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-xlarge);
    width: 50%;
    padding: var(--spacing-medium);
    box-sizing: border-box;
}
.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: calc(var(--spacing-large) + 20px); /* 20px for marker */
    text-align: right;
}
.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: calc(var(--spacing-large) + 20px);
    text-align: left;
}
.timeline-marker {
    position: absolute;
    top: 10px; /* Align with content */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    border: 3px solid var(--color-background-light);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow-soft);
}
.timeline-item:nth-child(odd) .timeline-marker {
    right: -20px; /* Half of marker width */
    transform: translateX(0%);
}
.timeline-item:nth-child(even) .timeline-marker {
    left: -20px;
    transform: translateX(0%);
}
.timeline-content {
    background-color: var(--color-white);
    padding: var(--spacing-medium);
    border-radius: var(--border-radius-biomorphic);
    box-shadow: var(--box-shadow-soft);
    position: relative;
}
.timeline-content h3 {
    color: var(--color-primary-dark);
    margin-top: 0;
}
.timeline-content p {
    font-size: 0.95rem;
    color: var(--color-text-medium);
    margin-bottom: 0;
}
.animated-icon { /* Placeholder for animated icons */
    font-size: 1.5rem;
    color: var(--color-white);
}
/* Add actual animated icon styles here if you have SVGs or CSS animations */
.icon-discover::before { content: "💡"; } /* Example placeholder */
.icon-strategy::before { content: "🗺️"; }
.icon-implement::before { content: "⚙️"; }
.icon-evaluate::before { content: "📊"; }

@media screen and (max-width: 768px) {
    .timeline-container::before {
        left: 20px; /* Move line to the left */
        transform: translateX(0);
    }
    .timeline-item {
        width: 100%;
        left: 0 !important; /* Reset left positioning */
        padding-left: calc(var(--spacing-large) + 20px + 10px); /* Space for line and marker */
        padding-right: var(--spacing-medium);
        text-align: left !important; /* All items align left */
    }
    .timeline-item:nth-child(odd) .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        left: 0px; /* Align marker with the line */
        transform: translateX(0%);
    }
}


/* Research (Progress Indicators) */
.progress-indicators-container {
    margin-top: var(--spacing-large);
}
.progress-item {
    margin-bottom: var(--spacing-medium);
}
.progress-item label {
    display: block;
    margin-bottom: var(--spacing-small);
    font-weight: 600;
    color: var(--color-text-dark);
}
.progress.is-primary::-webkit-progress-value { background-color: var(--color-primary) !important; }
.progress.is-primary::-moz-progress-bar { background-color: var(--color-primary) !important; }
.progress.is-link::-webkit-progress-value { background-color: var(--color-accent) !important; }
.progress.is-link::-moz-progress-bar { background-color: var(--color-accent) !important; }
.progress.is-success::-webkit-progress-value { background-color: var(--color-secondary) !important; } /* Using secondary for success for palette consistency */
.progress.is-success::-moz-progress-bar { background-color: var(--color-secondary) !important; }

.progress {
    height: 1.5rem !important;
    border-radius: var(--border-radius-soft) !important;
    background-color: var(--color-background-dark) !important;
}
.progress::-webkit-progress-bar {
    background-color: var(--color-background-dark);
    border-radius: var(--border-radius-soft);
}
.progress::-webkit-progress-value {
    border-radius: var(--border-radius-soft);
    transition: width var(--transition-speed-medium) ease-out;
}
.progress::-moz-progress-bar {
    border-radius: var(--border-radius-soft);
    transition: width var(--transition-speed-medium) ease-out;
}


/* General Card Styling (Used for Team, Testimonials, Workshops, etc.) */
.card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-biomorphic);
    box-shadow: var(--box-shadow-soft);
    transition: transform var(--transition-speed-medium) var(--animation-timing-bouncy), box-shadow var(--transition-speed-medium) ease-out;
    height: 100%; /* Make cards in a row same height */
    display: flex; /* STROGO: For centering content */
    flex-direction: column; /* STROGO: For centering content */
    /* align-items: center; /* STROGO: Removed to allow full width content within card */
    text-align: center; /* STROGO: For centering text content */
}
.card:hover {
    transform: translateY(-5px) scale(var(--animation-bounce-factor, 1.02));
    box-shadow: var(--box-shadow-strong);
}
.card .card-image { /* Container for image */
    width: 100%;
    border-top-left-radius: var(--border-radius-biomorphic);
    border-top-right-radius: var(--border-radius-biomorphic);
    overflow: hidden; /* Ensures image respects border radius */
    /* STROGO: Fixed height for image consistency */
    height: 200px; /* Adjust as needed, e.g., 200px, 250px */
    display: flex; /* For centering image inside */
    align-items: center; /* Vertical centering */
    justify-content: center; /* Horizontal centering */
}
.card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* STROGO: Ensures image covers area without distortion */
    display: block; /* Remove extra space below image */
}
.card .card-content {
    padding: var(--spacing-medium);
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allows content to fill card height */
    justify-content: center; /* Centers content vertically if card content area is larger */
    text-align: center; /* Ensure text content is centered */
}
.card .card-content .title, .card .card-content .subtitle {
    margin-bottom: var(--spacing-small) !important;
}
.card .card-content p {
    font-size: 0.95rem;
    color: var(--color-text-medium);
    margin-bottom: 0; /* Reset if it's the last element */
}

/* Team Section */
.team-member-card .card-image {
    height: 250px; /* Specific height for team member photos */
}
.team-member-card .card-content .title {
    color: var(--color-primary-dark);
}
.team-member-card .card-content .subtitle {
    color: var(--color-accent);
    font-weight: 600;
}

/* Workshops Section */
.workshop-card {
    /* Uses general .card styles */
    text-align: left; /* Override general card text-align if media object is used */
}
.workshop-card .media-left .animated-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    padding: var(--spacing-small);
    background-color: rgba(var(--color-secondary-rgb, 255,200,162), 0.2); /* Softer background for icon */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.workshop-card .media-content .title {
    color: var(--color-primary-dark);
}
.icon-leadership::before { content: "👥"; } /* Example placeholder */
.icon-innovation::before { content: "💡"; }
.icon-digital::before { content: "💻"; }
.icon-sales::before { content: "📈"; }


/* Gallery Section */
.gallery-card {
    position: relative;
    overflow: hidden; /* For overlay */
}
.gallery-card .card-image {
    height: 250px; /* Consistent height for gallery images */
}
.gallery-card .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    padding: var(--spacing-medium);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-speed-medium) ease-out, transform var(--transition-speed-medium) ease-out;
}
.gallery-card:hover .image-overlay {
    opacity: 1;
    transform: translateY(0);
}
.gallery-card .image-overlay p {
    color: var(--color-white) !important;
    margin-bottom: 0;
    font-weight: bold;
}

/* External Resources Section */
#recursos-externos .box {
    background-color: var(--color-white);
    border-radius: var(--border-radius-soft);
    box-shadow: var(--box-shadow-soft);
}
#recursos-externos .media {
    padding: var(--spacing-small) 0;
    align-items: flex-start;
}
#recursos-externos .media-content strong a {
    color: var(--color-primary-dark) !important;
    font-size: 1.1rem;
}
#recursos-externos .media-content p {
    color: var(--color-text-medium);
    font-size: 0.9rem;
    line-height: 1.5;
}
.resource-divider {
    background-color: var(--color-background-dark);
    height: 1px;
    margin: var(--spacing-small) 0;
}

/* Customer Stories Section */
.story-card {
    background-color: var(--color-white);
    box-shadow: var(--box-shadow-soft);
    border-radius: var(--border-radius-biomorphic);
    overflow: hidden; /* To contain image and round corners */
}
.story-card .card-content {
    padding: var(--spacing-large);
}
.story-card .title {
    color: var(--color-primary-dark);
}
.story-card .subtitle {
    color: var(--color-accent);
    font-style: italic;
}
.story-card p {
    color: var(--color-text-medium);
}
.story-image-container {
    margin-top: var(--spacing-medium);
    border-radius: var(--border-radius-soft);
    overflow: hidden;
    height: 200px; /* Fixed height for story images */
}
.story-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.testimonial-card {
     /* Uses general .card styles */
}
.testimonial-card .testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--color-text-dark);
    margin-bottom: var(--spacing-medium) !important;
    line-height: 1.7;
}
.testimonial-card .testimonial-author strong {
    color: var(--color-primary-dark);
    font-size: 1.1rem;
}
.testimonial-card .testimonial-author span {
    font-size: 0.9rem;
    color: var(--color-text-medium);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background-color: var(--color-white);
    margin-bottom: var(--spacing-medium);
    border-radius: var(--border-radius-soft);
    box-shadow: var(--box-shadow-soft);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background-color: transparent; /* Button itself is transparent */
    border: none;
    padding: var(--spacing-medium) !important;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-text-dark) !important;
    cursor: pointer;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}
.faq-question:hover {
    background-color: rgba(var(--color-primary-rgb, 160,210,219), 0.1) !important; /* Soft hover */
}
.faq-question .icon i {
    transition: transform var(--transition-speed-fast) ease-out;
    color: var(--color-primary);
}
.faq-question.active .icon i {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 var(--spacing-medium) var(--spacing-medium) var(--spacing-medium);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed-medium) ease-in-out, padding var(--transition-speed-medium) ease-in-out;
    font-size: 0.95rem;
    color: var(--color-text-medium);
    line-height: 1.7;
}
.faq-answer.active {
    max-height: 500px; /* Adjust if answers are very long */
    padding-top: var(--spacing-small); /* Add padding when active */
}


/* Contact Section */
.contact-form-styled {
    background-color: var(--color-white);
    padding: var(--spacing-large);
    border-radius: var(--border-radius-biomorphic);
    box-shadow: var(--box-shadow-strong);
}
.contact-form-styled .label {
    color: var(--color-text-dark);
    font-weight: 600;
}
.custom-input, .custom-textarea {
    border-radius: var(--border-radius-soft) !important;
    border: 1px solid var(--color-background-dark) !important;
    box-shadow: none !important; /* Remove Bulma's default input shadow */
    transition: border-color var(--transition-speed-fast) ease-out,
                box-shadow var(--transition-speed-fast) ease-out !important;
    font-family: var(--font-body) !important;
    padding-top: 0.8em !important;
    padding-bottom: 0.8em !important;
}
.custom-input:focus, .custom-textarea:focus {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 0.125em rgba(var(--color-primary-rgb, 160,210,219), 0.25) !important; /* Focus ring */
}
.custom-input::placeholder, .custom-textarea::placeholder {
    color: var(--color-text-medium);
    opacity: 0.7;
}
.control.has-icons-left .icon {
    height: 2.7em !important; /* Align with custom input padding */
    width: 2.7em !important;
    color: var(--color-text-medium);
}


/* Footer */
.footer {
    background-color: var(--color-background-dark); /* Darker pastel for footer */
    padding: var(--spacing-xlarge) var(--spacing-medium) var(--spacing-medium);
    color: var(--color-text-dark);
}
.footer .footer-title {
    color: var(--color-text-dark) !important;
    margin-bottom: var(--spacing-medium);
}
.footer p, .footer ul li a {
    color: var(--color-text-medium) !important;
    font-size: 0.95rem;
}
.footer ul {
    list-style: none;
    padding-left: 0;
}
.footer ul li {
    margin-bottom: var(--spacing-small);
}
.footer ul li a:hover {
    color: var(--color-primary-dark) !important;
    text-decoration: underline;
}
.footer .social-media-links a {
    font-weight: 600; /* Make social links slightly bolder */
}
.footer .content p { /* For copyright text */
    color: var(--color-text-medium) !important;
    font-size: 0.9rem;
}
.footer img { /* Footer logo */
    opacity: 0.8;
}

/* Specific Page Styles */
/* success.html */
.success-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: var(--spacing-large);
    background-color: var(--color-background-light);
}
.success-content {
    background-color: var(--color-white);
    padding: var(--spacing-xlarge);
    border-radius: var(--border-radius-biomorphic);
    box-shadow: var(--box-shadow-strong);
    max-width: 600px;
}
.success-content .icon.is-large {
    font-size: 4rem;
    color: var(--color-success);
    margin-bottom: var(--spacing-medium);
}
.success-content .title {
    color: var(--color-success) !important;
}

/* privacy.html & terms.html */
.static-page-content {
    padding-top: 100px; /* Offset for fixed header */
    padding-bottom: var(--spacing-xlarge);
}
.static-page-content .container {
    background-color: var(--color-white);
    padding: var(--spacing-large);
    border-radius: var(--border-radius-soft);
    box-shadow: var(--box-shadow-soft);
    max-width: 960px; /* Limit width for readability */
    margin-left: auto;
    margin-right: auto;
}
.static-page-content h1.title {
    margin-bottom: var(--spacing-large);
}
.static-page-content h2.subtitle, .static-page-content h3.title.is-4 {
    margin-top: var(--spacing-large);
    margin-bottom: var(--spacing-small);
    color: var(--color-primary-dark) !important;
}
.static-page-content p, .static-page-content li {
    line-height: 1.8;
    color: var(--color-text-dark);
}
.static-page-content ul {
    list-style: disc;
    padding-left: var(--spacing-medium);
}


/* Parallax Effect Placeholder (JS might be better for complex parallax) */
.parallax-section {
    background-attachment: fixed; /* Simple CSS parallax */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Glassmorphism Example Class (if needed for modals or specific elements) */
.glassmorphic {
    background: rgba(255, 255, 255, 0.2); /* Adjust alpha for desired transparency */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-soft);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07); /* Softer shadow */
}

/* AOS Animation Customization (Optional - AOS defaults are usually good) */
[data-aos] {
    /* Example: make default fade-up a bit bouncier */
    /* transition-timing-function: var(--animation-timing-bouncy) !important; */
}

/* Responsive adjustments */
@media screen and (max-width: 1023px) { /* Tablet and below */
    .navbar-menu {
        background-color: rgba(253, 240, 224, 0.98) !important; /* More opaque for mobile menu */
        box-shadow: 0 8px 16px rgba(10,10,10,.1);
        padding: 0.5rem 0;
        border-radius: 0 0 var(--border-radius-soft) var(--border-radius-soft);
    }
    .columns.is-centered .column.is-two-thirds {
        width: 90% !important; /* Allow more width on smaller screens */
    }
}

@media screen and (max-width: 768px) { /* Mobile */
    .section {
        padding: var(--spacing-large) var(--spacing-small);
    }
    .title.is-1 { font-size: 2.5rem !important; }
    .title.is-2 { font-size: 2rem !important; }
    .subtitle.is-3 { font-size: 1.25rem !important; }

    .columns.is-multiline .column {
        /* Ensure single column layout for cards on mobile if not already handled by Bulma's is-half-tablet etc. */
    }
    .contact-form-styled {
        padding: var(--spacing-medium);
    }
}