<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 {
    --primary-color: #0D47A1; /* Deep, trustworthy Blue */
    --primary-color-darker: #0B3A85;
    --accent-color-1: #4CAF50; /* Green for growth, positive actions */
    --accent-color-1-darker: #3E8E41;
    --accent-color-2: #FF9800; /* Orange for attention, energy */
    --accent-color-2-darker: #E68900;

    --text-color: #363636; /* Bulma's default text color */
    --text-light-color: #FFFFFF;
    --heading-color: #222222; /* Darker for strong headings */
    --link-color: var(--primary-color);
    --link-hover-color: var(--primary-color-darker);

    --bg-light: #F5F8FA; /* Very light grey/blueish for alternative sections */
    --bg-dark: #1C1E26; /* Dark for footer */

    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-bg-darker-tint: rgba(200, 200, 220, 0.15); /* For darker backgrounds */
    --glass-blur: 10px;
    --glass-border-color: rgba(255, 255, 255, 0.2);
    --glass-shadow-color: rgba(0, 0, 0, 0.15);

    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Work Sans', sans-serif;

    --section-padding: 4rem 1.5rem;
    --card-border-radius: 12px;
    --navbar-height: 3.25rem; /* Default Bulma navbar height */
}

/* Bulma Variable Overrides (conceptual, apply directly or use custom classes) */
.button.is-primary {
    background-color: var(--accent-color-1);
    border-color: transparent;
    color: var(--text-light-color);
}
.button.is-primary:hover {
    background-color: var(--accent-color-1-darker);
    border-color: transparent;
    color: var(--text-light-color);
}
.button.is-link { /* Using accent-color-2 for 'link' buttons for variety */
    background-color: var(--accent-color-2);
    border-color: transparent;
    color: var(--text-light-color);
}
.button.is-link:hover {
    background-color: var(--accent-color-2-darker);
    border-color: transparent;
    color: var(--text-light-color);
}

.progress.is-primary::-webkit-progress-value { background-color: var(--accent-color-1); }
.progress.is-primary::-moz-progress-bar { background-color: var(--accent-color-1); }
.progress.is-primary::-ms-fill { background-color: var(--accent-color-1); }

.progress.is-link::-webkit-progress-value { background-color: var(--accent-color-2); }
.progress.is-link::-moz-progress-bar { background-color: var(--accent-color-2); }
.progress.is-link::-ms-fill { background-color: var(--accent-color-2); }

.progress.is-success::-webkit-progress-value { background-color: #48c774; } /* Bulma success */
.progress.is-success::-moz-progress-bar { background-color: #48c774; }
.progress.is-success::-ms-fill { background-color: #48c774; }

.progress.is-warning::-webkit-progress-value { background-color: #ffdd57; } /* Bulma warning */
.progress.is-warning::-moz-progress-bar { background-color: #ffdd57; }
.progress.is-warning::-ms-fill { background-color: #ffdd57; }


/* Base Styles */
html {
    scroll-behavior: smooth;
    background-color: var(--bg-light); /* Fallback background */
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    background: linear-gradient(135deg, var(--bg-light) 0%, #E0E7FF 100%); /* Subtle gradient background */
    overflow-x: hidden;
    padding-top: var(--navbar-height); /* For fixed navbar */
    padding-top: 0px !important;
}

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

.title { margin-bottom: 1rem !important; }
.subtitle { margin-bottom: 2rem !important; color: #555; }

a {
    color: var(--link-color);
    transition: color 0.3s ease;
}
a:hover {
    color: var(--link-hover-color);
}

.section {
    padding: var(--section-padding);
    position: relative; /* For potential pseudo-elements or absolute positioning within sections */
}
.section-alternative {
    background-color: #FFFFFF; /* White background for contrast */
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.03);
}

/* Global Button Styles */
.button, button, input[type='submit'], input[type='button'] {
    font-family: var(--font-primary);
    font-weight: 600;
    padding: 0.8em 1.8em;
    border-radius: 25px; /* Pill-shaped */
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    line-height: 1.5; /* Ensure text is centered vertically */
}

.button:hover, button:hover, input[type='submit']:hover, input[type='button']:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.button:active, button:active, input[type='submit']:active, input[type='button']:active {
    transform: translateY(-1px) scale(0.99);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}


/* Header &amp; Navbar */
.header.is-fixed-top {
    background: rgba(255, 255, 255, 0.6); /* Semi-transparent white */
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    box-shadow: 0 2px 10px var(--glass-shadow-color);
    z-index: 1030;
}
.navbar-item, .navbar-link {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--primary-color) !important;
}
.navbar-item:hover, .navbar-link:hover, .navbar-item.is-active {
    background-color: transparent !important;
    color: var(--accent-color-1) !important;
}
.logo-text {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}
.navbar-burger {
    color: var(--primary-color);
}
@media screen and (max-width: 1023px) {
    .navbar-menu {
        background-color: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        padding: 0.5rem 0;
    }
}


/* Hero Section */
#hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--text-light-color);
    min-height: calc(100vh - var(--navbar-height));
    display: flex;
    align-items: center;
    justify-content: center;
}
#hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)); /* Darkening overlay */
    z-index: 1;
}
#hero .hero-body {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-content-wrapper {
    background: rgba(0, 0, 0, 0.2); /* Slight glass effect for content box */
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 2rem;
    border-radius: var(--card-border-radius);
    max-width: 800px;
    margin: 0 auto;
}
.hero-title {
    font-size: 3rem; /* Responsive font size */
    font-weight: 700;
    color: var(--text-light-color);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: 1.5rem; /* Responsive font size */
    font-weight: 400;
    color: var(--text-light-color);
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    margin-bottom: 2rem;
}
.hero-cta {
    font-size: 1.1rem;
    padding: 0.8em 2em !important;
}

@media screen and (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.2rem; }
    #hero { min-height: calc(90vh - var(--navbar-height)); }
    .hero-content-wrapper { padding: 1.5rem; }
}


/* Section Title General Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color-1);
    margin: 0.5rem auto 2rem; /* Center the underline */
    border-radius: 2px;
}

/* Glassmorphism Card Style */
.glassmorphism {
    background: var(--glass-bg-darker-tint); /* Use slightly darker tint for cards on light bg */
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: var(--card-border-radius);
    border: 1px solid var(--glass-border-color);
    box-shadow: 0 8px 24px var(--glass-shadow-color);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* For consistent card heights in a row */
    display: flex;
    flex-direction: column;
}
.glassmorphism:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* Services, Success Stories, External Resources Cards */
.card.glassmorphism { /* Applying glassmorphism directly to Bulma card */
    background: var(--glass-bg-darker-tint);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: var(--card-border-radius);
    border: 1px solid var(--glass-border-color);
    box-shadow: 0 8px 24px var(--glass-shadow-color);
    padding: 0; /* Bulma card has its own padding structure */
    overflow: hidden; /* Important for child elements */
    text-align: center;
    display: flex; /* Ensure flex properties for Bulma card */
    flex-direction: column;
}
.card.glassmorphism .card-image { /* Bulma card image */
    padding: 1.5rem 1.5rem 0; /* Add padding around the image container */
    margin: 0 auto; /* Center the container */
}
.card.glassmorphism .image-container {
    width: 100%;
    height: 200px; /* Fixed height for image area */
    border-radius: calc(var(--card-border-radius) - 5px); /* Slightly smaller radius */
    overflow: hidden;
    margin-bottom: 0; /* Remove default margin if Bulma adds it here */
    display: flex;
    align-items: center;
    justify-content: center;
}
.card.glassmorphism .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.card.glassmorphism .card-content {
    padding: 1.5rem;
    flex-grow: 1; /* Allows content to fill space, pushing button down */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes button to bottom if card-content is flex container */
}
.card.glassmorphism .card-title {
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.card.glassmorphism .content {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 1rem; /* Space before button */
}
.card.glassmorphism .price-tag {
    font-weight: 600;
    color: var(--accent-color-1);
    font-size: 1.1rem;
    margin-top: auto; /* Push price tag towards bottom if not enough content */
    margin-bottom: 1rem;
}
.card.glassmorphism .button {
    margin-top: auto; /* Push button to the bottom */
}

/* Methodology Section */
#methodology .progress {
    margin-bottom: 1rem;
    height: 1.2rem;
    border-radius: 6px;
}
#methodology label {
    font-family: var(--font-secondary);
    font-weight: 500;
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text-color);
}
#methodology .image-container img {
    border-radius: var(--card-border-radius);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Success Stories - Testimonial Card specific styles */
.testimonial-card {
    padding: 2rem; /* More padding for testimonials */
}
.testimonial-avatar {
    margin-top: -3.5rem; /* Pull avatar up */
    margin-bottom: 1rem;
    border: 4px solid var(--text-light-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.testimonial-card .card-image { padding: 0;} /* Remove padding if using the avatar trick */

.testimonial-card .title.card-title {
    font-size: 1.3rem;
    margin-top: 0;
}
.testimonial-card .subtitle {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Partners Section */
#partners .image-container img {
    filter: grayscale(80%);
    transition: filter 0.3s ease;
    max-height: 80px; /* Control partner logo size */
    width: auto;
    opacity: 0.7;
}
#partners .image-container img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Accolades Section */
.accolade-item {
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}
.accolade-item img {
    margin-bottom: 0.5rem;
}
.accolade-item p {
    font-size: 0.9rem;
}
.accolade-item strong {
    color: var(--heading-color);
}

.stat-widget {
    display: inline-block;
    padding: 1.5rem 2rem;
    margin: 0.5rem;
    text-align: center;
    min-width: 200px;
}
.stat-widget .title {
    color: var(--accent-color-1);
    font-size: 3rem;
    margin-bottom: 0.25rem !important;
}
.stat-widget .subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0 !important;
}


/* External Resources Section */
.resource-card .card-content {
    text-align: left;
}
.resource-card .title a {
    color: var(--primary-color);
    font-size: 1.25rem;
}
.resource-card .title a:hover {
    text-decoration: underline;
    color: var(--primary-color-darker);
}
.resource-card .content {
    font-size: 0.9rem;
    color: #555;
}


/* Contact Section */
#contact .label {
    color: var(--text-color);
    font-weight: 500;
}
#contact .input, #contact .textarea {
    border-radius: 8px;
    border: 1px solid #DBDBDB; /* Bulma's default border */
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#contact .input:focus, #contact .textarea:focus {
    border-color: var(--accent-color-1);
    box-shadow: 0 0 0 0.125em rgba(var(--accent-color-1rgb, 72, 199, 142), 0.25); /* Create --accent-color-1rgb if needed */
}
#contact form.glassmorphism {
    padding: 2rem; /* More padding for form */
}
#contact .has-text-centered p {
    margin-bottom: 0.5rem;
}


/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: #A0AEC0; /* Light grey text for footer */
    padding: 3rem 1.5rem 2rem;
}
.footer .footer-title {
    font-family: var(--font-primary);
    color: var(--text-light-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.footer a {
    color: #A0AEC0; /* Light grey links */
    transition: color 0.3s ease;
}
.footer a:hover {
    color: var(--accent-color-1); /* Accent color on hover */
}
.footer hr {
    background-color: #4A5568; /* Darker grey for hr */
    height: 1px;
    margin: 1.5rem 0;
}
.footer .content p {
    font-size: 0.9rem;
}


/* Scroll-dependent Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition-delay: 0.1s; /* Slight delay */
}
.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}
/* Stagger animations for items in a list/grid */
.columns.is-multiline .column.animate-on-scroll { transition-delay: calc(var(--animation-order, 0) * 0.15s); }


/* Specific Page Styles */
.page-content-padding { /* Apply to main content container on about, privacy, terms */
    padding-top: calc(var(--navbar-height) + 2rem);
    padding-bottom: 2rem;
}
.privacy-page-content, .terms-page-content { /* For individual pages as requested */
    padding-top: 100px !important; /* Overrides .page-content-padding if both are used */
    padding-bottom: 3rem;
    max-width: 900px;
    margin: 0 auto;
}
.privacy-page-content h1, .terms-page-content h1 { margin-bottom: 1.5rem; }
.privacy-page-content h2, .terms-page-content h2 { margin-top: 2rem; margin-bottom: 1rem; font-size: 1.8rem;}
.privacy-page-content p, .terms-page-content p { margin-bottom: 1rem; line-height: 1.7; }

/* success.html specific styles */
.success-page-container {
    min-height: calc(100vh - var(--navbar-height)); /* Full viewport height minus navbar */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-color-1) 0%, var(--primary-color) 100%);
    color: var(--text-light-color);
}
.success-page-container .success-icon {
    font-size: 5rem; /* Placeholder for an icon */
    color: var(--text-light-color);
    margin-bottom: 1.5rem;
    /* Example: using a checkmark character */
}
.success-page-container .success-icon::before {
    content: 'âœ”'; /* Simple checkmark, replace with SVG or font icon */
    display: block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    margin: 0 auto 1.5rem;
}
.success-page-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light-color);
}
.success-page-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}
.success-page-container .button {
    background-color: var(--text-light-color);
    color: var(--accent-color-1);
}
.success-page-container .button:hover {
    background-color: #f0f0f0;
    color: var(--accent-color-1-darker);
}


/* Cookie Popup (already has inline styles, this is for minor adjustments if needed) */
#cookie-popup {
    font-family: var(--font-secondary);
}
#cookie-popup p a {
    font-weight: 500;
}
#cookie-popup button { /* Style the accept button slightly better */
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-weight: 600;
}


/* Read More Link Style */
.read-more-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--accent-color-1);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}
.read-more-link::after {
    content: 'â†’';
    margin-left: 0.3em;
    transition: margin-left 0.3s ease;
}
.read-more-link:hover::after {
    margin-left: 0.6em;
}
.read-more-link:hover {
    color: var(--accent-color-1-darker);
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .section {
        padding: 3rem 1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .stat-widget {
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 300px; /* Ensure they don't get too wide */
    }
    .columns.is-centered .column.is-two-thirds {
      width: 90% !important; /* Make columns wider on mobile for better readability */
    }
}
*{
    opacity: 1 !important;
}</pre></body></html>