<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* style.css */

/* -------------------------------------------------------------------------- */
/*                                 CSS Variables                              */
/* -------------------------------------------------------------------------- */
:root {
    /* Triadic Color Scheme */
    --primary-color: #2E86C1; /* Strong Blue */
    --primary-color-darker: #21618C;
    --primary-color-lighter: #AED6F1; /* Lighter for backgrounds/hovers */

    --secondary-color: #F39C12; /* Warm Orange */
    --secondary-color-darker: #B9770E;
    --secondary-color-lighter: #FAD7A0;

    --accent-color: #8E44AD; /* Rich Purple */
    --accent-color-darker: #6C3483;
    --accent-color-lighter: #D7BDE2;

    /* Text and Background Colors */
    --text-color: #34495E; /* Dark Slate Blue */
    --text-color-light: #ECF0F1; /* Light Gray */
    --heading-color: #2C3E50; /* Very Dark Blue */
    
    --background-color: #F8F9F9; /* Very Light Gray/Off-white */
    --card-background-color: #FFFFFF;
    --footer-background-color: #212F3D; 
    --light-background-highlight: #EAECEE;

    /* Fonts */
    --font-primary: 'Raleway', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;

    /* UI Elements */
    --border-radius-soft: 8px;
    --border-radius-biomorphic: 25px 8px 25px 8px; 
    --border-radius-card: 10px;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.07);
    --shadow-medium: 0 8px 20px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 10px 30px rgba(46, 134, 193, 0.15);

    /* Transitions */
    --transition-speed: 0.3s;
    --transition-timing: ease-in-out;
    --transition-default: var(--transition-speed) var(--transition-timing);

    /* Spacing */
    --section-padding: 4rem 1.5rem;
    --navbar-height: 52px; /* Bulma default navbar height */
    --header-offset: calc(var(--navbar-height) + 30px); 
}


/* -------------------------------------------------------------------------- */
/*                                Global Styles                               */
/* -------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.7;
    font-size: 1rem; /* Base font size (16px) */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.title, .subtitle {
    font-family: var(--font-primary);
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.3;
}

.title {
    color: var(--heading-color);
    text-shadow: 1px 1px 1px rgba(0,0,0,0.05);
}
.title.is-1 { font-size: 2.8rem; } /* Adjusted for responsiveness */
.title.is-2 { font-size: 2.2rem; margin-bottom: 1.5rem;}
.subtitle.is-3 { font-size: 1.5rem; }
.subtitle {
    color: var(--text-color);
    opacity: 0.9;
    font-weight: 400;
}

p, .content p {
    font-family: var(--font-secondary);
    color: var(--text-color);
    margin-bottom: 1.25rem;
}

a {
    color: var(--primary-color);
    transition: color var(--transition-default);
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    color: var(--primary-color-darker);
    text-decoration: underline;
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    margin-bottom: 2.5rem !important;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0.75rem auto 0;
    border-radius: var(--border-radius-soft);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}


/* -------------------------------------------------------------------------- */
/*                                  Buttons                                   */
/* -------------------------------------------------------------------------- */
.button, button, input[type="submit"], input[type="button"] {
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: var(--border-radius-soft);
    padding: 0.8em 1.6em;
    transition: all var(--transition-default);
    box-shadow: var(--shadow-light);
    border: 1px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 0.9rem;
    line-height: 1.5; /* Ensure text is vertically centered */
}

.button.is-primary {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border-color: var(--primary-color);
}
.button.is-primary:hover {
    background-color: var(--primary-color-darker);
    border-color: var(--primary-color-darker);
    color: var(--text-color-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}
.button.is-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-light);
}

.button.is-secondary {
    background-color: var(--secondary-color);
    color: var(--card-background-color); /* White text on orange */
    border-color: var(--secondary-color);
}
.button.is-secondary:hover {
    background-color: var(--secondary-color-darker);
    border-color: var(--secondary-color-darker);
    color: var(--card-background-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.button.is-link.is-outlined {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}
.button.is-link.is-outlined:hover {
    background-color: var(--primary-color-lighter);
    color: var(--primary-color-darker);
    border-color: var(--primary-color-lighter);
}

/* Biomorphic Button Style */
.button.is-biomorphic {
    border-radius: var(--border-radius-biomorphic);
    padding: 0.9em 2em;
    font-weight: 700;
    overflow: hidden;
    position: relative;
    z-index: 1; /* For ::before */
}
.button.is-biomorphic::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}
.button.is-biomorphic:hover::before {
    width: 280%; 
    height: 280%;
}


/* -------------------------------------------------------------------------- */
/*                                    Forms                                   */
/* -------------------------------------------------------------------------- */
.input, .textarea, .select select {
    font-family: var(--font-secondary);
    border-radius: var(--border-radius-soft);
    border: 1px solid #D3D3D3; /* Lighter gray border */
    padding: 0.8em 1.1em;
    transition: border-color var(--transition-default), box-shadow var(--transition-default);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.06);
    background-color: #fff;
    font-size: 0.95rem;
}
.input:focus, .textarea:focus, .select select:focus,
.input.is-focused, .textarea.is-focused, .select select.is-focused,
.input:active, .textarea:active, .select select:active,
.input.is-active, .textarea.is-active, .select select.is-active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.125em rgba(46, 134, 193, 0.2); 
}

.label {
    color: var(--heading-color);
    font-weight: 600;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    margin-bottom: 0.5em;
}

/* Biomorphic Input Style */
.input.is-biomorphic, .textarea.is-biomorphic, .select.is-biomorphic select {
    border-radius: var(--border-radius-biomorphic);
    border: 1px solid var(--primary-color-lighter);
}
.input.is-biomorphic:focus, .textarea.is-biomorphic:focus, .select.is-biomorphic select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(46, 134, 193, 0.3);
}


/* -------------------------------------------------------------------------- */
/*                               Header &amp; Navbar                              */
/* -------------------------------------------------------------------------- */
.header.is-fixed-top {
    background-color: rgba(255, 255, 255, 0.9); 
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); 
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: background-color var(--transition-default), box-shadow var(--transition-default);
}
.header.is-fixed-top.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.navbar-item, .navbar-link {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-color);
    transition: color var(--transition-default), background-color var(--transition-default);
    padding: 0.5rem 1.2rem;
    font-size: 0.95rem;
}
.navbar-item:hover, .navbar-link:hover,
.navbar-item.is-active, .navbar-link.is-active {
    background-color: var(--primary-color-lighter) !important; 
    color: var(--primary-color-darker) !important;
}
.navbar-item.logo-text {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--primary-color);
}
.navbar-item.logo-text:hover {
    color: var(--primary-color-darker);
    background-color: transparent !important;
}

.navbar-burger {
    color: var(--primary-color);
    height: 3.25rem; /* Bulma default */
    width: 3.25rem; /* Bulma default */
}
.navbar-burger span {
    height: 2px; /* Thicker lines */
    background-color: var(--primary-color);
}
.navbar-burger:hover {
    background-color: rgba(46, 134, 193, 0.05); /* Light primary hover */
}

@media screen and (max-width: 1023px) {
    .navbar-menu {
        background-color: rgba(252, 252, 252, 0.98); 
        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);
    }
    .navbar-item {
        padding: 0.8rem 1.5rem;
        border-bottom: 1px solid var(--light-background-highlight);
    }
    .navbar-item:last-child {
        border-bottom: none;
    }
}


/* -------------------------------------------------------------------------- */
/*                                Hero Section                                */
/* -------------------------------------------------------------------------- */
#hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--text-color-light);
}

.hero-body {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 1.5rem; 
    min-height: calc(100vh - var(--navbar-height)); /* Ensure it's mostly full screen */
}

.hero-title, #hero .title {
    color: var(--text-color-light) !important; 
    font-size: 3rem; 
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6); 
}

.hero-subtitle, #hero .subtitle {
    color: var(--text-color-light) !important; 
    font-size: 1.4rem; 
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px; /* Limit width for readability */
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

#hero .button.is-primary {
    background-color: var(--secondary-color); 
    color: var(--card-background-color);
    border-color: var(--secondary-color);
    font-size: 1rem;
    padding: 0.9em 2.2em;
}
#hero .button.is-primary:hover {
    background-color: var(--secondary-color-darker);
    border-color: var(--secondary-color-darker);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.scroll-down-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}
.scroll-down-indicator svg {
    width: 28px; 
    height: auto;
    margin-bottom: 5px;
    animation: bounceMouse 2.2s infinite;
}
.scroll-down-indicator p {
    color: var(--text-color-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
@keyframes bounceMouse {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}
#wheel { animation: scrollWheel 1.3s infinite; }
@keyframes scrollWheel {
  0% { opacity: 0; transform: translateY(-8px); }
  20% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(8px); }
}


/* -------------------------------------------------------------------------- */
/*                                Card Styles                                 */
/* -------------------------------------------------------------------------- */
.card {
    background-color: var(--card-background-color);
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-default), box-shadow var(--transition-default);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; 
}
.card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-strong);
}

.card .card-image { /* Bulma's .card-image */
    display: block; /* Allow margin auto on img to work */
    position: relative; /* For potential overlays */
}
.card .card-image .image-container { /* Your custom wrapper if used */
    overflow: hidden; /* Clip zoom effect */
    height: 200px; /* Fixed height for image containers */
    display: flex;       /* For centering */
    align-items: center; /* For centering */
    justify-content: center; /* For centering */
}
.card .card-image .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the fixed height container */
    transition: transform 0.4s var(--transition-timing);
}
.card:hover .card-image .image-container img {
    transform: scale(1.08);
}

.card-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.card-content .title, .card-content .subtitle {
    margin-bottom: 0.75rem;
}
.card-content .title.is-4 { font-size: 1.3rem; }
.card-content .content {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    color: var(--text-color);
    opacity: 0.9;
}
.card .button {
    margin-top: auto; 
    align-self: flex-start; /* Align button to the start (left) */
}


/* Service Card Specific */
.service-card .card-image .image-container {
    border-bottom: 4px solid var(--primary-color-lighter);
}

/* Case Study Card */
.case-study-card .tag {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
    padding: 0.5em 0.8em;
}

/* Resource Card */
.resource-card {
    border-left: 4px solid var(--secondary-color);
    background-color: var(--card-background-color); /* Ensure contrast if section bg is different */
}
.resource-card .title a {
    color: var(--heading-color);
    font-weight: 600;
}
.resource-card .title a:hover {
    color: var(--secondary-color-darker);
}

/* Event Card */
.event-card {
    border-top: 4px solid var(--accent-color);
    background-color: var(--card-background-color);
}
.event-card .subtitle.is-6 {
    color: var(--accent-color-darker);
    font-weight: 600;
}

/* -------------------------------------------------------------------------- */
/*                              Section Specifics                             */
/* -------------------------------------------------------------------------- */

#nosotros .content.is-medium {
    font-size: 1.05rem;
    line-height: 1.8;
}
#nosotros figure img {
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-strong); /* More prominent shadow for key images */
    object-fit: cover;
}

#clientes .client-logo {
    padding: 1rem; /* Add padding around logos */
}
#clientes .client-logo img {
    filter: grayscale(90%);
    transition: filter var(--transition-default), transform var(--transition-default);
    max-height: 50px;
    width: auto;
    margin: 0.5rem 1rem;
}
#clientes .client-logo img:hover {
    filter: grayscale(0%);
    transform: scale(1.15);
}

#prensa .press-logo img {
    max-height: 45px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: grayscale(60%);
}
#prensa .press-logo p {
    font-style: italic;
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.7;
}

#sostenibilidad figure img {
    border-radius: 40% 60% 70% 30% / 50% 50% 60% 50%; /* More biomorphic */
    box-shadow: var(--shadow-strong);
    object-fit: cover;
}

.wave-bg-top {
    background-color: var(--light-background-highlight); /* Set a base for wave to blend into */
}
.wave-bg-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px; /* Wave height */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23F8F9F9' fill-opacity='1' d='M0,192L48,176C96,160,192,128,288,133.3C384,139,480,181,576,186.7C672,192,768,160,864,138.7C960,117,1056,107,1152,117.3C1248,128,1344,160,1392,176L1440,192L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E"); /* Fill matches var(--background-color) */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    z-index: 0; /* Ensure it's behind section content but above general body bg */
}
#servicios.wave-bg-top::before, #sostenibilidad.wave-bg-top::before, #prensa.wave-bg-top::before, #contacto.wave-bg-top::before {
    /* Ensure the SVG fill matches the color of the *previous* section's background */
    /* If previous is --background-color, the SVG is fine. If it's --light-background-highlight, adjust SVG fill. */
}
#servicios, #sostenibilidad, #prensa, #contacto.has-background-light { /* For sections with wave that should have a light bg */
    position: relative; /* Needed for z-index of ::before */
    background-color: var(--light-background-highlight); /* Ensure this for contrast */
}
#servicios &gt; .container, #sostenibilidad &gt; .container, #prensa &gt; .container, #contacto &gt; .container {
    position: relative; /* To keep content above the wave */
    z-index: 1;
}


/* -------------------------------------------------------------------------- */
/*                          UI Components (Accordion, Modal, Slider)          */
/* -------------------------------------------------------------------------- */

.accordion-container {
    max-width: 750px;
    margin: 2.5rem auto;
}
.accordion-item {
    background-color: var(--card-background-color);
    margin-bottom: 12px;
    border-radius: var(--border-radius-soft);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    border: 1px solid var(--light-background-highlight);
}
.accordion-header {
    background-color: transparent;
    color: var(--heading-color);
    cursor: pointer;
    padding: 1.1rem 1.5rem;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    font-size: 1.05rem;
    font-family: var(--font-primary);
    font-weight: 600;
    transition: background-color var(--transition-default);
    position: relative;
}
.accordion-header::after { 
    content: '\\002B'; 
    font-size: 1.4rem;
    color: var(--primary-color);
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
}
.accordion-header.active::after {
    transform: translateY(-50%) rotate(45deg);
}
.accordion-header:hover {
    background-color: var(--primary-color-lighter);
    color: var(--primary-color-darker);
}
.accordion-content {
    padding: 0 1.5rem;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding 0.35s ease-out;
}
.accordion-content p {
    padding: 1.2rem 0;
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.modal-card-head, .modal-card-foot {
    background-color: var(--background-color); /* Lighter than default Bulma */
    border-color: var(--light-background-highlight);
}
.modal-card-title {
    color: var(--heading-color);
    font-family: var(--font-primary);
    font-size: 1.4rem;
}
.modal-card-body {
    background-color: var(--card-background-color);
    color: var(--text-color);
    font-size: 0.95rem;
}
.modal-card-body ul { list-style: disc; margin-left: 20px; margin-bottom: 1rem; }
.modal-card-body li { margin-bottom: 0.5rem; }

.testimonial-slider {
    position: relative;
    overflow: hidden;
    min-height: 180px; 
}
.testimonial-slide {
    display: none; 
    padding: 0 0.5rem; 
}
.testimonial-slide.is-active {
    display: block;
    animation: fadeIn 0.6s var(--transition-timing);
}
.testimonial-slider .message {
    background-color: var(--primary-color-lighter); 
    border-radius: var(--border-radius-card);
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-medium);
}
.testimonial-slider .message-body {
    color: var(--primary-color-darker); 
    font-size: 1.05rem;
    line-height: 1.7;
    padding: 1.8rem;
}
.testimonial-slider .message-body strong {
    display: block;
    margin-top: 1rem;
    font-family: var(--font-primary);
    color: var(--primary-color); /* Slightly lighter than text for emphasis */
}
.slider-controls { margin-top: 1.8rem; }
.slider-controls .button { margin: 0 0.5rem; }


.progress-indicator-item { margin-bottom: 1.8rem; }
.progress-indicator-item .label {
    margin-bottom: 0.6rem !important; 
    font-weight: 600;
    font-size: 0.9rem;
}
.progress.is-success::-webkit-progress-value { background-color: #28a745; } /* Custom Success Green */
.progress.is-info::-webkit-progress-value { background-color: var(--primary-color); }
.progress.is-warning::-webkit-progress-value { background-color: var(--secondary-color); }

.progress.is-success::-moz-progress-bar { background-color: #28a745; }
.progress.is-info::-moz-progress-bar { background-color: var(--primary-color); }
.progress.is-warning::-moz-progress-bar { background-color: var(--secondary-color); }

.progress {
    height: 0.8rem; /* Slimmer progress bar */
    border-radius: var(--border-radius-soft);
    background-color: var(--light-background-highlight);
}


/* -------------------------------------------------------------------------- */
/*                             3D Effect on Cards                             */
/* -------------------------------------------------------------------------- */
.has-3d-effect {
    transform-style: preserve-3d;
    perspective: 1200px;
}
.card.service-card.has-3d-effect .card-image .image-container img {
    transition: transform 0.5s var(--transition-timing), filter 0.5s var(--transition-timing);
}
.card.service-card.has-3d-effect:hover .card-image .image-container img {
    transform: translateZ(15px) scale(1.03) rotateX(-2deg); 
    filter: brightness(1.05);
}


/* -------------------------------------------------------------------------- */
/*                                   Footer                                   */
/* -------------------------------------------------------------------------- */
.footer {
    background-color: var(--footer-background-color);
    color: var(--text-color-light);
    padding: 4rem 1.5rem 2.5rem; 
}
.footer .title {
    color: var(--text-color-light) !important; 
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}
.footer p, .footer li {
    font-size: 0.9rem;
    color: var(--text-color-light);
    opacity: 0.75;
    line-height: 1.6;
}
.footer ul {
    list-style: none;
    padding-left: 0;
}
.footer li {
    margin-bottom: 0.5rem;
}
.footer a {
    color: var(--text-color-light); 
    opacity: 0.75;
    transition: opacity var(--transition-default), color var(--transition-default);
    font-weight: 500; /* Lighter weight for footer links */
}
.footer a:hover {
    color: var(--secondary-color); 
    opacity: 1;
    text-decoration: none;
}
.footer hr {
    background-color: rgba(236, 240, 241, 0.15); 
    height: 1px;
    margin: 2rem 0;
}
.footer .content.has-text-centered p {
    font-size: 0.85rem;
    opacity: 0.6;
}


/* -------------------------------------------------------------------------- */
/*                            Page Specific Styles                            */
/* -------------------------------------------------------------------------- */

.success-page-container, .error-page-container { /* Added error page */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--navbar-height)); 
    text-align: center;
    padding: 2rem;
    padding-top: var(--header-offset); 
}
.success-page-container .icon, .error-page-container .icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}
.success-page-container .icon { color: var(--primary-color); }
.error-page-container .icon { color: var(--accent-color); } /* Example error color */

.success-page-container .title, .error-page-container .title { margin-bottom: 1rem; }
.success-page-container .subtitle, .error-page-container .subtitle { margin-bottom: 2rem; }

.static-page-content {
    padding-top: var(--header-offset); 
    padding-bottom: 4rem;
}
.static-page-content .container {
    background-color: var(--card-background-color);
    padding: 2.5rem;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-medium);
    max-width: 900px; /* Constrain width for readability */
}
.static-page-content h1, .static-page-content h2, .static-page-content h3 {
    margin-bottom: 1.2rem;
    margin-top: 1.8rem;
    color: var(--heading-color);
}
.static-page-content h1 { font-size: 2rem; }
.static-page-content h2 { font-size: 1.6rem; }
.static-page-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 0.95rem;
}
.static-page-content ul, .static-page-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}
.static-page-content li {
    margin-bottom: 0.6rem;
}


/* -------------------------------------------------------------------------- */
/*                             Utility Classes                                */
/* -------------------------------------------------------------------------- */
.has-text-primary { color: var(--primary-color) !important; }
.has-text-secondary { color: var(--secondary-color) !important; }
.has-text-accent { color: var(--accent-color) !important; }
.has-text-light { color: var(--text-color-light) !important; }
.has-text-dark { color: var(--text-color) !important; }

#page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 99999;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1); /* Smoother transition */
}
#page-transition-overlay.fade-out {
    opacity: 0;
}


/* -------------------------------------------------------------------------- */
/*                                Animations                                  */
/* -------------------------------------------------------------------------- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-text-focus-in {
	animation: text-focus-in 0.8s cubic-bezier(0.550, 0.085, 0.680, 0.530) 0.2s both;
}
@keyframes text-focus-in {
  0% { filter: blur(10px); opacity: 0; }
  100% { filter: blur(0px); opacity: 1; }
}

.animate-text-pop-up-top {
	animation: text-pop-up-top 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.5s both;
}
@keyframes text-pop-up-top {
  0% { transform: translateY(15px); opacity: 0; }
  100% { transform: translateY(0px); opacity: 1; }
}

.animate-button-pulse {
    animation: button-pulse 2s infinite 1.2s;
}
@keyframes button-pulse {
  0% { transform: scale(1); box-shadow: var(--shadow-light); }
  50% { transform: scale(1.02); box-shadow: var(--shadow-medium); }
  100% { transform: scale(1); box-shadow: var(--shadow-light); }
}


/* -------------------------------------------------------------------------- */
/*                          Responsive Adjustments                            */
/* -------------------------------------------------------------------------- */
@media screen and (max-width: 1023px) { /* Tablet and below */
    .title.is-1, .hero-title { font-size: 2.5rem; }
    .title.is-2 { font-size: 2rem; }
    .subtitle.is-3, .hero-subtitle { font-size: 1.3rem; }
}

@media screen and (max-width: 768px) { /* Mobile */
    .section {
        padding: 2.5rem 1rem;
    }
    .title.is-1, .hero-title { font-size: 2.2rem; }
    .title.is-2 { font-size: 1.8rem; }
    .subtitle.is-3, .hero-subtitle { font-size: 1.15rem; }

    .columns.is-vcentered .column.has-text-centered figure {
        margin-top: 1.5rem;
    }
    
    .hero-body {
        padding: 4rem 1rem;
        min-height: calc(90vh - var(--navbar-height)); /* Slightly less than full on mobile */
    }
    #hero .button.is-primary {
        padding: 0.8em 1.8em;
        font-size: 0.9rem;
    }
    .card .card-image .image-container {
        height: 180px; /* Slightly smaller image container on mobile */
    }
    .footer { padding: 3rem 1rem 2rem; }
    .footer .columns &gt; .column { margin-bottom: 1.5rem; } /* Space between footer columns on mobile */

    .static-page-content .container { padding: 1.5rem; }
    .static-page-content h1 { font-size: 1.8rem; }
    .static-page-content h2 { font-size: 1.4rem; }
}</pre></body></html>