<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    /* Fonts */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Source Sans Pro', sans-serif;

    /* Colors - Split Complementary (Teal/Blue-Green Primary, Orange/Yellow Accents) */
    --color-primary: #005f73; /* Dark Teal - Main structural, dark text */
    --color-primary-light: #0A9396; /* Lighter Teal - Links, accents */
    --color-primary-dark: #004c5d; /* Darker shade of primary for hover/borders */

    --color-accent1: #FF8C00; /* Dark Orange - CTAs, highlights */
    --color-accent1-dark: #e07b00; /* Darker orange for hover */
    --color-accent2: #EE9B00; /* Gamboge/Dark Yellow - Secondary accents, details */
    --color-accent2-dark: #d48800; /* Darker yellow-orange for hover */

    /* Neutrals */
    --color-text-dark: #222222; /* Very Dark Grey - Main text, headings */
    --color-text-medium: #555555; /* Medium Grey - Subdued text */
    --color-text-light: #FFFFFF; /* White - Text on dark backgrounds */
    --color-text-on-accent: #FFFFFF; /* Text color for accent backgrounds */

    --color-background-light: #f8f9fa; /* Off-White - Main page background */
    --color-background-dark: var(--color-primary); /* Dark sections, footer */
    --color-background-section-alt: #eef3f5; /* Slightly bluish off-white for alternating sections */

    --color-border: #ced4da; /* Light grey for borders */
    --color-shadow: rgba(0, 0, 0, 0.08);
    --color-shadow-strong: rgba(0, 0, 0, 0.15);

    /* UI Variables */
    --header-height: 80px;
    --section-padding-y: 80px;
    --border-radius-small: 5px;
    --border-radius-medium: 10px;
    --border-radius-large: 20px;
    --box-shadow-light: 0 4px 15px var(--color-shadow);
    --box-shadow-medium: 0 6px 20px var(--color-shadow-strong);
    --transition-speed-fast: 0.2s;
    --transition-speed-normal: 0.3s;
    --transition-speed-elastic: 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Elastic ease */
}

/* Global Resets &amp; Base 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-secondary);
    line-height: 1.7;
    color: var(--color-text-dark);
    background-color: var(--color-background-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    margin-bottom: 0.75em;
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 1em; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p {
    margin-bottom: 1.25rem;
    color: var(--color-text-medium);
}

a {
    color: var(--color-accent1);
    text-decoration: none;
    transition: color var(--transition-speed-fast) ease-in-out;
}

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

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

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

/* Layout Helpers */
.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.section-padding {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
}
.section-padding-bg {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
    background-color: var(--color-background-section-alt);
    position: relative; /* For overlays if any */
}
.section-padding-bg[style*="background-image"] {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.section-title {
    margin-bottom: 0.5em; /* Reduced from h2 default */
    color: var(--color-text-dark);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}
.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-medium);
    max-width: 700px;
    margin: 0 auto 2.5rem auto; /* More space after subtitle */
    text-align: center;
}
.subsection-title {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    text-align: center;
}

/* Global Component Styles */

/* Buttons */
.btn, button, input[type="submit"], input[type="button"] {
    display: inline-block;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8em 1.8em;
    border-radius: var(--border-radius-small);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition-speed-elastic);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before { /* For potential hover effects */
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255,255,255,0.2);
    transition: width var(--transition-speed-normal) ease-out;
    z-index: -1;
}
.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: var(--color-accent1);
    color: var(--color-text-on-accent);
    border-color: var(--color-accent1);
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--color-accent1-dark);
    border-color: var(--color-accent1-dark);
    color: var(--color-text-on-accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    text-decoration: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-secondary:hover, .btn-secondary:focus {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-decoration: none;
}
.btn-secondary::before {
    background-color: var(--color-primary); /* Darken effect on hover */
    /*opacity: 0;*/
}
.btn-secondary:hover::before {
    /*opacity: 0.1;*/
}


.btn-small {
    padding: 0.6em 1.2em;
    font-size: 0.9rem;
}
.btn-disabled {
    background-color: var(--color-border);
    color: var(--color-text-medium);
    border-color: var(--color-border);
    cursor: not-allowed;
}
.btn-disabled:hover, .btn-disabled:focus {
    transform: none;
    box-shadow: none;
}
.btn-disabled::before { display: none; }

.btn-link {
    display: inline-block;
    color: var(--color-accent2);
    font-weight: 600;
    text-decoration: none;
    padding: 0.25em 0;
    position: relative;
}
.btn-link::after {
    content: 'â†’';
    display: inline-block;
    margin-left: 0.3em;
    transition: transform var(--transition-speed-fast) ease-in-out;
}
.btn-link:hover::after {
    transform: translateX(5px);
}
.btn-link:hover, .btn-link:focus {
    color: var(--color-accent2-dark);
    text-decoration: underline;
}


/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text-dark); /* Default for light backgrounds */
}
.contact-section .form-group label { /* Specific for contact section with dark bg */
    color: var(--color-text-light);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
textarea,
select {
    width: 100%;
    padding: 0.9em 1em;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-small);
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--color-text-dark);
    background-color: var(--color-text-light);
    transition: border-color var(--transition-speed-fast) ease-in-out, box-shadow var(--transition-speed-fast) ease-in-out;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 95, 115, 0.25); /* Primary color with alpha */
}
textarea {
    resize: vertical;
    min-height: 120px;
}
.form-checkbox {
    display: flex;
    align-items: center;
}
.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-right: 0.75em;
    accent-color: var(--color-primary); /* Modern way to color checkboxes */
    transform: scale(1.2);
}
.form-checkbox label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 0.9rem;
}
.contact-section .form-checkbox label,
.contact-section .form-checkbox label a { /* Specific for contact section with dark bg */
    color: var(--color-text-light);
}
.contact-section .form-checkbox label a {
    text-decoration: underline;
}
.contact-section .form-checkbox label a:hover {
    color: var(--color-accent1);
}


/* Cards */
.card, .service-card, .award-card, .testimonial-card, .webinar-card, .news-article, .resource-item {
    display: flex;
    flex-direction: column;
    align-items: stretch; /* Stretch children to fill width, text-align for content */
    text-align: left; /* Default text align for card content */
    background-color: var(--color-text-light);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--box-shadow-light);
    overflow: hidden;
    transition: transform var(--transition-speed-elastic), box-shadow var(--transition-speed-elastic);
    height: 100%; /* For equal height cards in a grid */
}
.card:hover, .service-card:hover, .award-card:hover, .testimonial-card:hover, .webinar-card:hover, .news-article:hover, .resource-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--box-shadow-medium);
}
.card-image, .card .image-container { /* The direct container for the image */
    width: 100%;
    overflow: hidden;
    position: relative; /* For potential overlays on images */
    /* Fixed height set by individual card types or specific CSS */
}
.card-image img, .card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-out;
}
.card:hover .card-image img, .card:hover .image-container img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1; /* Allows content to fill space if card is flex item */
    display: flex;
    flex-direction: column;
}
.card-content &gt; *:last-child {
    margin-bottom: 0;
}
.card-title {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
    font-size: 1.3rem; /* Slightly smaller for cards */
}
.card-content p {
    font-size: 0.95rem;
    color: var(--color-text-medium);
    margin-bottom: 1rem;
    flex-grow: 1;
}
/* Centering content within cards where appropriate */
.award-card .card-content, .testimonial-card .card-content {
    text-align: center;
}
.testimonial-card .card-image { /* For circular testimonial images */
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 1.5rem auto 1rem; /* Centered, above content */
    border: 4px solid var(--color-accent1);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Header &amp; Navigation */
.site-header {
    background-color: var(--color-text-light);
    padding: 0.8rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    transition: background-color var(--transition-speed-normal), box-shadow var(--transition-speed-normal);
}
.site-header.scrolled { /* Add via JS on scroll */
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    max-height: 50px; /* Adjust as needed */
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}
.nav-menu li {
    margin-left: 1.8rem;
}
.nav-menu .nav-link {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    padding: 0.5em 0;
    position: relative;
}
.nav-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent1);
    transition: width var(--transition-speed-normal) ease-out;
}
.nav-menu .nav-link:hover::after,
.nav-menu .nav-link.active::after { /* Add .active class via JS */
    width: 100%;
}
.nav-menu .nav-link:hover,
.nav-menu .nav-link:focus,
.nav-menu .nav-link.active {
    color: var(--color-accent1);
    text-decoration: none;
}

.nav-toggle {
    display: none; /* Hidden by default, shown on mobile */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001; /* Above menu items if they overlay */
}
.hamburger-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    position: relative;
    transition: background-color 0s 0.1s linear; /* Delay hiding bar for smoother transition */
}
.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: transform var(--transition-speed-normal) ease-in-out, top var(--transition-speed-normal) ease-in-out;
}
.hamburger-icon::before { top: -8px; }
.hamburger-icon::after { top: 8px; }

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


/* Hero Section */
.hero-section {
    min-height: 85vh; /* Slightly less than full viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--color-text-light); /* Ensured by HTML prompt */
    padding-top: var(--header-height); /* Account for fixed header */
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 40, 60, 0.7) 0%, rgba(0, 20, 30, 0.5) 70%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-title {
    font-size: 3.5rem; /* Larger for hero */
    font-weight: 900;
    color: var(--color-text-light); /* Ensured by HTML prompt */
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}
.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9); /* Ensured by HTML prompt */
    margin-bottom: 2em;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}
.hero-section .btn-primary {
    padding: 1em 2.5em;
    font-size: 1.1rem;
}
.curved-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.curved-divider.bottom-curve {
    bottom: -1px; /* Ensure no gap */
}
.curved-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px); /* Slight overlap to prevent gaps */
    height: 80px; /* Adjust height of curve */
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.service-card .card-image { height: 220px; }

/* About Section */
.columns-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}
.column {
    flex: 1 1 300px; /* Grow, shrink, base width */
}
.column-text p { text-align: justify; }
.column-image .image-container {
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--box-shadow-medium);
}
.column-image .image-container img {
    border-radius: var(--border-radius-large); /* Match container */
}

/* Progress Indicators (shared by About &amp; Sustainability) */
.progress-indicators-container { margin-top: 2.5rem; }
.progress-item { margin-bottom: 1.5rem; }
.progress-item label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}
.progress-bar-container {
    background-color: var(--color-border);
    border-radius: var(--border-radius-small);
    overflow: hidden;
    height: 28px;
    position: relative;
}
.progress-bar {
    background-color: var(--color-accent2); /* Use Accent 2 for progress */
    height: 100%;
    color: var(--color-text-on-accent);
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Text at the end of the bar */
    padding-right: 10px;
    font-size: 0.9em;
    font-weight: 700;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    transition: width 1s var(--transition-speed-elastic);
    white-space: nowrap;
}
.sustainability-progress .progress-bar {
    background-color: var(--color-primary-light); /* Different color for sustainability */
}

/* Awards Section */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.award-card .card-image { height: 180px; }
.award-card .card-content { text-align: center; }

/* Accolades/Testimonials Section */
.accolades-carousel { /* Basic grid, JS can make it a carousel */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.testimonial-card .testimonial-text {
    font-style: italic;
    color: var(--color-text-medium);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 25px; /* Space for quote */
}
.testimonial-card .testimonial-text::before {
    content: 'â€œ';
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--color-accent1);
    position: absolute;
    left: -5px;
    top: -10px;
    /*opacity: 0.8;*/
}
.testimonial-author {
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 1rem;
}
.case-study-link { margin-top: 1rem; }

/* Sustainability Section */
/* Uses .columns-container and .progress-indicators-container, styled above */

/* Webinars Section */
.webinars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.webinar-card .card-image { height: 200px; }
.webinar-meta {
    font-size: 0.85rem;
    color: var(--color-text-medium);
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.webinar-card .btn-small { margin-top: auto; /* Pushes button to bottom of card content */ }

/* Events Section */
.events-list .event-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: var(--color-text-light);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--box-shadow-light);
    transition: transform var(--transition-speed-elastic), box-shadow var(--transition-speed-elastic);
}
.event-item:hover {
    transform: translateX(5px);
    box-shadow: var(--box-shadow-medium);
}
.event-date-badge {
    background-color: var(--color-accent1);
    color: var(--color-text-on-accent);
    padding: 1rem;
    border-radius: var(--border-radius-small);
    text-align: center;
    min-width: 80px; /* Ensure enough width for date */
    height: fit-content;
}
.event-date-badge .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}
.event-date-badge .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}
.event-date-badge .year {
    display: block;
    font-size: 0.8rem;
}
.event-details { flex-grow: 1; }
.event-title { margin-bottom: 0.3rem; color: var(--color-primary); font-size: 1.4rem; }
.event-meta {
    font-size: 0.9rem;
    color: var(--color-text-medium);
    margin-bottom: 0.75rem;
}
.event-meta .event-location { font-weight: 600; }
.event-details p:not(.event-meta) { font-size: 0.95rem; }

.events-gallery { margin-top: 3rem; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.gallery-item .image-container {
    border-radius: var(--border-radius-small);
    overflow: hidden;
    box-shadow: var(--box-shadow-light);
    height: 180px; /* Fixed height for gallery images */
}
.gallery-item .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-out;
}
.gallery-item .image-container img:hover {
    transform: scale(1.08);
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.news-article .card-image { height: 220px; }
.article-meta {
    font-size: 0.85rem;
    color: var(--color-text-medium);
    margin-bottom: 0.75rem;
}

/* External Resources Section */
.resources-list .resource-item {
    margin-bottom: 1.5rem; /* Re-apply margin if needed, as base .card removed it */
    padding: 1.5rem; /* Direct padding for items not using full card structure */
    text-align: left;
}
.resource-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.resource-title a {
    color: var(--color-primary);
}
.resource-title a:hover {
    color: var(--color-accent1);
}
.resource-description {
    font-size: 0.9rem;
    color: var(--color-text-medium);
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    color: var(--color-text-light); /* Text on dark bg */
    position: relative;
}
.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    /*opacity: 0.9; !* Slightly transparent *!*/
    z-index: 0;
}
.contact-container {
    position: relative;
    z-index: 1; /* Content above overlay */
}
.contact-container .section-title, .contact-container .section-subtitle {
    color: var(--color-text-light); /* Override default dark text */
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.05); /* Subtle glassmorphism */
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
}
.contact-form input, .contact-form textarea {
    background-color: rgba(255,255,255,0.9); /* Lighter inputs for readability */
    color: var(--color-text-dark);
    border-color: rgba(255,255,255,0.3);
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: var(--color-text-medium);
}
.contact-form input:focus, .contact-form textarea:focus {
    background-color: var(--color-text-light);
    border-color: var(--color-accent1);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.3); /* Accent1 with alpha */
}


/* Footer */
.site-footer {
    background-color: var(--color-primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 3rem 0 0; /* Padding at top, bottom part has its own */
    font-size: 0.95rem;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-column h4 {
    color: var(--color-text-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: var(--font-secondary); /* Consistent font for footer titles */
    font-weight: 600;
}
.footer-logo {
    max-width: 180px;
    margin-bottom: 1rem;
}
.footer-column p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}
.footer-column ul li {
    margin-bottom: 0.6rem;
}
.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}
.footer-column ul li a:hover, .footer-column ul li a:focus {
    color: var(--color-accent1);
    text-decoration: underline;
}
.social-links-text li a {
    /* Text styling for social links */
    font-weight: 500;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Page Specific Styles */

/* Success Page */
.success-page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background-color: var(--color-background-light);
}
.success-content {
    background-color: var(--color-text-light);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--box-shadow-medium);
    max-width: 600px;
}
.success-content h1 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.success-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.success-icon { /* Placeholder for an icon */
    font-size: 4rem;
    color: var(--color-accent1);
    margin-bottom: 1rem;
    /* Example: content: 'âœ”'; if using pseudo-element */
}

/* Privacy &amp; Terms Pages */
.static-page-content { /* Generic wrapper for privacy.html, terms.html */
    padding-top: calc(var(--header-height) + 40px); /* Header height + extra space */
    padding-bottom: var(--section-padding-y);
    min-height: calc(100vh - var(--header-height) - 150px); /* Approx footer height */
}
.static-page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.static-page-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    text-align: left;
}
.static-page-content p, .static-page-content li {
    line-height: 1.8;
    margin-bottom: 1rem;
}
.static-page-content ul, .static-page-content ol {
    padding-left: 20px;
    margin-bottom: 1.5rem;
}
.static-page-content ul li { list-style-type: disc; }
.static-page-content ol li { list-style-type: decimal; }

/* Barba.js Page Transition */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-primary);
    z-index: 10000; /* Highest */
    transform: translateY(100%);
    /* JS will control transitions, e.g., by adding classes */
}
/* Simple fade for Barba.js if controlled by opacity/visibility */
/* [data-barba="container"] {
    transition: opacity 0.5s ease-in-out;
}
[data-barba="container"].barba-leave-active { opacity: 0; }
[data-barba="container"].barba-enter-from { opacity: 0; }
[data-barba="container"].barba-enter-active { opacity: 1; } */


/* Utility Classes */
.text-center { text-align: center; }
.hidden { display: none; }
.animate-on-scroll {
    /*opacity: 0; !* Initially hidden, GSAP/ScrollTrigger will animate *!*/
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible { /* Class added by JS */
    opacity: 1;
    transform: translateY(0);
}

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

    .columns-container { flex-direction: column; }
    .column-image { order: -1; margin-bottom: 1.5rem; } /* Image on top in mobile stack */

    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    :root { --section-padding-y: 60px; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    .hero-title { font-size: 2.3rem; }
    .hero-subtitle { font-size: 1rem; }

    .nav-toggle { display: block; }
    .main-navigation .nav-menu {
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--color-text-light);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        /*opacity: 0;*/
        transition: max-height 0.4s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
    }
    .main-navigation .nav-menu.is-active {
        max-height: 500px; /* Adjust as needed */
        opacity: 1;
        padding: 1rem 0;
    }
    .nav-menu li {
        margin-left: 0;
        width: 100%;
    }
    .nav-menu .nav-link {
        display: block;
        padding: 0.8rem 1.5rem;
        text-align: left;
        width: 100%;
    }
    .nav-menu .nav-link::after { display: none; /* Remove underline for mobile dropdown */ }
    .nav-menu .nav-link:hover, .nav-menu .nav-link.active {
        background-color: var(--color-background-section-alt);
        color: var(--color-accent1);
    }

    .events-list .event-item {
        flex-direction: column;
        align-items: flex-start; /* Align badge to start */
    }
    .event-date-badge { margin-bottom: 1rem; }

    .contact-form { padding: 1.5rem; }
    .footer-container { text-align: center; }
    .footer-column { margin-bottom: 1.5rem; }
    .footer-logo { margin-left: auto; margin-right: auto; }
}

@media (max-width: 480px) {
    .container { width: 95%; }
    h1 { font-size: 1.8rem; }
    .hero-title { font-size: 2rem; }
    .services-grid, .awards-grid, .accolades-carousel, .webinars-grid, .news-grid, .gallery-grid {
        grid-template-columns: 1fr; /* Single column */
    }
    .hero-section .btn-primary { padding: 0.8em 2em; font-size: 1rem; }
}

/* Cookie Popup - Basic styles from HTML prompt, can be enhanced here */
#cookie-popup {
    font-family: var(--font-secondary);
}
#cookie-popup p a {
    color: var(--color-accent1) !important; /* Override inline style if necessary */
}
#accept-cookie {
    background-color: var(--color-accent1) !important; /* Override inline style */
    color: var(--color-text-on-accent) !important; /* Override inline style */
    transition: background-color var(--transition-speed-fast) ease-in-out;
}
#accept-cookie:hover {
    background-color: var(--color-accent1-dark) !important;
}</pre></body></html>