/* style.css */

:root {
    --primary-color: #FF6B6B; /* Lively Coral */
    --primary-color-dark: #E55A5A;
    --primary-color-light-focus: #FFBDBD; /* For input focus ring */
    --secondary-color: #4ECDC4; /* Aqua Green */
    --secondary-color-dark: #3DA89F;
    --secondary-color-light: #A0E1DC;
    --secondary-color-xlight: #E0F7F6;
    --accent-color: #FFD166; /* Sunny Yellow */
    --accent-color-dark: #EAA940;

    --text-color: #363636; /* Bulma's default text */
    --text-color-light: #FFFFFF;
    --text-color-medium: #585858;
    --text-color-darker: #222222; /* For contrasty headings */

    --background-color: #FDFDFD;
    --light-gray-background: #f5f5f5; /* Bulma's .has-background-light */
    --light-gray-background-alt: #f8f9fa;
    --card-background: #FFFFFF;
    --input-background: #F0F3F7;
    --input-background-focus: #E8ECF2;
    --neutral-dark: #2c3e50;
    --neutral-light: #ecf0f1;
    --neutral-light-accent: #bdc3c7;

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

    --border-radius-card: 16px;
    --border-radius-button: 30px;
    --border-radius-input: 12px;
    --border-radius-generic: 8px;

    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.12);

    --volumetric-shadow-card: 0 10px 20px rgba(0, 0, 0, 0.07), 0 6px 6px rgba(0, 0, 0, 0.1);
    --volumetric-shadow-card-hover: 0 15px 30px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.12);
    --volumetric-shadow-button: 0 4px 8px rgba(0,0,0,0.1);
    --volumetric-shadow-button-hover: 0 7px 14px rgba(0,0,0,0.12);
    --volumetric-shadow-button-pressed: 0 2px 4px rgba(0,0,0,0.1);

    --navbar-height: 52px; /* Default Bulma navbar height (3.25rem * 16px) */
    --footer-link-color: #dfe6e9;
}

/* Global Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--background-color);
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--background-color);
}

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

.title {
    font-weight: 700;
}

.subtitle {
    font-weight: 400;
    color: var(--text-color-medium);
}

a {
    color: var(--primary-color);
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: var(--primary-color-dark);
}

.section {
    padding: 4rem 1.5rem;
}

@media screen and (min-width: 769px) {
    .section {
        padding: 5rem 1.5rem;
    }
}

@media screen and (min-width: 1024px) {
    .section {
        padding: 6rem 3rem; /* More horizontal padding on larger screens */
    }
}

.container {
    max-width: 1140px; /* Consistent max width */
    margin: 0 auto;
}

/* Header & Navbar */
.header.is-fixed-top {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--shadow-light);
    z-index: 1030; /* Ensure above other content */
}

.navbar-item img {
    max-height: calc(var(--navbar-height) - 20px); /* Logo size relative to navbar */
    width: auto;
}

.navbar-item, .navbar-link {
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--text-color);
    transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar-item:hover, .navbar-link:hover,
.navbar-item.is-active, .navbar-link.is-active {
    background-color: transparent !important;
    color: var(--primary-color) !important;
}

.navbar-burger {
    color: var(--text-color);
    height: var(--navbar-height);
    width: var(--navbar-height);
}
.navbar-burger:hover {
    background-color: transparent;
    color: var(--primary-color);
}

@media screen and (max-width: 1023px) {
    .navbar-menu {
        background-color: var(--card-background);
        box-shadow: 0 8px 16px rgba(10,10,10,.1);
        padding: 0.5rem 0;
        border-radius: 0 0 var(--border-radius-generic) var(--border-radius-generic);
    }
    .navbar-menu .navbar-item {
        padding: 0.75rem 1.5rem;
    }
}

/* Global Button Styles */
.button, button, input[type="submit"], input[type="button"] {
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: var(--border-radius-button);
    padding: 0.8em 1.8em;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth elastic transition */
    box-shadow: var(--volumetric-shadow-button);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    line-height: 1.5; /* Ensure text is vertically centered */
}

.button:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--volumetric-shadow-button-hover);
}

.button:active, button:active, input[type="submit"]:active, input[type="button"]:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: var(--volumetric-shadow-button-pressed);
}

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

.button.is-link.is-outlined {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background-color: transparent;
    font-weight: 500; /* Slightly less bold for outlined */
}
.button.is-link.is-outlined:hover {
    background-color: var(--secondary-color-xlight);
    color: var(--secondary-color-dark);
    border-color: var(--secondary-color-dark);
}

.button.is-small {
    padding: 0.6em 1.2em;
    font-size: 0.85rem;
}
.button.is-large {
    padding: 1em 2.2em;
    font-size: 1.15rem;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(var(--primary-color-rgb, 255, 107, 107), 0.6), rgba(var(--secondary-color-rgb, 78, 205, 196), 0.7)), linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)); /* Brighter gradient + darkening */
    z-index: 1;
}
:root { /* Define RGB versions for gradient */
    --primary-color-rgb: 255, 107, 107;
    --secondary-color-rgb: 78, 205, 196;
}

.hero .hero-body {
    position: relative;
    z-index: 2;
    padding: 6rem 1.5rem;
}

.hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem); /* Responsive font size */
    font-weight: 700;
    color: var(--text-color-light) !important;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.hero .hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-color-light) !important;
    margin-bottom: 2.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.hero .button {
    font-size: 1.1rem;
}

/* Section Title Styling */
.section-title {
    font-family: var(--font-primary);
    color: var(--text-color-darker);
    margin-bottom: 1.5rem !important;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
    font-weight: 700;
    font-size: 2.5rem; /* Consistent section title size */
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}
.section .subtitle:not(.hero-subtitle) { /* Subtitles under section titles */
    color: var(--text-color-medium);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Card Styles */
.card.volumetric-card {
    background-color: var(--card-background);
    border-radius: var(--border-radius-card);
    box-shadow: var(--volumetric-shadow-card);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; /* For equal height in columns using Bulma's flexbox grid */
}

.card.volumetric-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--volumetric-shadow-card-hover);
}

.card .card-image {
    text-align: center; /* Center the figure if it's not full width */
    position: relative; /* For potential overlays on image */
}
.card .card-image figure.image {
    margin: 0 auto; /* Center the figure */
    display: block; /* Ensure margin auto works */
}
.card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the figure area */
    display: block;
    border-radius: var(--border-radius-card) var(--border-radius-card) 0 0; /* Round top corners if image is flush */
}
/* If figure itself has rounded corners: */
.card .card-image figure.image {
     border-radius: var(--border-radius-card) var(--border-radius-card) 0 0;
     overflow: hidden; /* Clip img to figure's rounded corners */
}


.card .card-content {
    padding: 1.5rem;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card .card-content .title {
    color: var(--text-color-darker);
    font-size: 1.3rem; /* Card titles */
    margin-bottom: 0.5rem;
}
.card .card-content .subtitle {
    color: var(--text-color-medium);
    font-size: 0.95rem; /* Card subtitles */
    margin-bottom: 1rem;
    line-height: 1.5;
}
.card .card-content .button {
    margin-top: auto; /* Push button to bottom of card content */
}

/* Instructor Card Specifics (inherits .card.volumetric-card) */
.card.has-text-centered .card-image {
    padding-top: 1.5rem; /* Space for rounded image */
}
.card.has-text-centered .card-image figure.image.is-128x128 { /* Bulma class */
    border: 4px solid var(--card-background); /* Create a border effect against card bg */
    box-shadow: var(--shadow-light);
}
.card.has-text-centered .card-content .title {
    margin-top: 0.5rem;
}
.card.has-text-centered .card-content p.is-size-7 {
    font-size: 0.85rem !important;
    line-height: 1.5;
    color: var(--text-color-medium);
}

/* Volumetric Inputs */
.volumetric-input {
    background-color: var(--input-background);
    border-radius: var(--border-radius-input);
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.08),
                inset -2px -2px 5px rgba(255,255,255,0.7);
    border: 1px solid transparent;
    padding: 0.8em 1.2em;
    transition: all 0.3s ease;
    color: var(--text-color);
    font-family: var(--font-secondary);
    font-size: 1rem;
}
.volumetric-input::placeholder {
    color: var(--text-color-medium);
    opacity: 0.7;
}
.volumetric-input:focus {
    background-color: var(--input-background-focus);
    box-shadow: inset 3px 3px 6px rgba(0,0,0,0.1),
                inset -3px -3px 6px rgba(255,255,255,0.6),
                0 0 0 2.5px var(--primary-color-light-focus);
    outline: none;
    border: 1px solid transparent;
}
/* Bulma input/textarea overrides */
.input.volumetric-input, .textarea.volumetric-input {
    border-color: transparent; /* Remove Bulma border */
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.08), inset -2px -2px 5px rgba(255,255,255,0.7);
}
.input.volumetric-input:focus, .textarea.volumetric-input:focus {
    border-color: transparent !important; /* Override Bulma focus */
    box-shadow: inset 3px 3px 6px rgba(0,0,0,0.1),
                inset -3px -3px 6px rgba(255,255,255,0.6),
                0 0 0 2.5px var(--primary-color-light-focus) !important;
}
.control.has-icons-left .input.volumetric-input {
    padding-left: 2.8em; /* Adjust for icon */
}
.control.has-icons-left .icon.is-left {
    height: calc(1.6em + (0.8em * 2)); /* Match input height */
    width: 2.8em;
    color: var(--text-color-medium);
}
.label {
    color: var(--text-color-darker);
    font-weight: 600;
    font-family: var(--font-secondary);
    margin-bottom: 0.75rem;
}

/* Volumetric Progress Bars */
.progress.volumetric-progress {
    height: 1.4rem;
    border-radius: var(--border-radius-input); /* Consistent radius */
    background-color: var(--input-background);
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.1), inset -2px -2px 4px rgba(255,255,255,0.8);
    padding: 4px;
    overflow: hidden;
}
.progress.volumetric-progress::-webkit-progress-bar {
    background-color: transparent;
}
.progress.volumetric-progress::-webkit-progress-value {
    background-color: var(--primary-color);
    border-radius: calc(var(--border-radius-input) - 4px);
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) inset, 0 0 10px var(--primary-color); /* Glow effect */
}
.progress.volumetric-progress::-moz-progress-bar { /* Firefox */
    background-color: var(--primary-color);
    border-radius: calc(var(--border-radius-input) - 4px);
    transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) inset, 0 0 10px var(--primary-color);
}
.progress.is-info.volumetric-progress::-webkit-progress-value,
.progress.is-info.volumetric-progress::-moz-progress-bar {
    background-color: var(--secondary-color);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) inset, 0 0 10px var(--secondary-color);
}
.progress.is-success.volumetric-progress::-webkit-progress-value, /* Using accent for success */
.progress.is-success.volumetric-progress::-moz-progress-bar {
    background-color: var(--accent-color);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1) inset, 0 0 10px var(--accent-color);
}

/* Switch (bulma-switch like styling) */
.switch[type="checkbox"] {
    outline: 0; display: inline-block; position: relative; cursor: pointer; user-select: none;
    height: 1.8em; width: 3.6em; margin-right: 0.5em; vertical-align: middle;
    -webkit-appearance: none; -moz-appearance: none; appearance: none;
}
.switch[type="checkbox"]:before { /* Track */
    content: ""; position: absolute; transition: all .25s ease-in-out;
    left: 0; top: 50%; transform: translateY(-50%); width: 100%; height: 85%;
    background: var(--input-background);
    border-radius: 1em;
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.1), inset -2px -2px 4px rgba(255,255,255,0.8);
}
.switch[type="checkbox"]:after { /* Handle */
    content: ""; position: absolute; transition: all .25s ease-in-out;
    top: 50%; left: 0.25em; transform: translateY(-50%);
    width: 1.3em; height: 1.3em;
    background: var(--card-background);
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2), 0 1px 3px rgba(0,0,0,0.1);
}
.switch[type="checkbox"]:checked:before {
    background: var(--primary-color);
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.2);
}
.switch[type="checkbox"].is-info:checked:before { background: var(--secondary-color); }
.switch[type="checkbox"]:checked:after { left: calc(100% - 1.55em); } /* width - handle_width - offset */

/* Scroll Animations (Initial States for JS) */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Vision Section */
#vision .content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color-medium);
}
#vision figure.image img {
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-strong);
}

/* Case Studies Section */
#case-studies ul { margin-left: 1.5em; margin-bottom: 1em; }
#case-studies ul li { margin-bottom: 0.5em; color: var(--text-color-medium); }
#case-studies ul li .icon { color: var(--primary-color); margin-right: 0.3em; }
#case-studies .label { margin-top: 1rem; }
#case-studies figure.image img {
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-light);
}
.reverse-columns { /* For alternating layout */
    flex-direction: row-reverse;
}

/* Sustainability Section */
#sustainability .content { font-size: 1.1rem; line-height: 1.8; color: var(--text-color-medium); }
#sustainability figure.image.is-square img {
    border-radius: 50%; /* Circular image */
    box-shadow: var(--shadow-strong);
    object-fit: cover;
}
.animated-icon-placeholder .fa-leaf {
    color: var(--accent-color) !important; /* Using accent for leaf */
}

/* Clientele Section */
.client-logos img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
    margin: 1rem;
}
.client-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* External Resources Section */
.resource-box {
    background-color: var(--card-background);
    border-radius: var(--border-radius-card);
    padding: 1.75rem;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.resource-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}
.resource-box .title.is-5 { margin-bottom: 0.75rem; font-size: 1.15rem;}
.resource-box .title.is-5 a { color: var(--primary-color); text-decoration: none; }
.resource-box .title.is-5 a:hover { color: var(--primary-color-dark); text-decoration: underline; }
.resource-box p.is-size-6 { color: var(--text-color-medium); flex-grow: 1; line-height: 1.6; font-size: 0.95rem !important; }

/* Contact Section */
.contact-section-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5rem 0;
}
.contact-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(var(--background-color-rgb, 253, 253, 253),0.85), rgba(var(--background-color-rgb, 253, 253, 253),0.98));
    z-index: 1;
}
:root { --background-color-rgb: 253, 253, 253; }
.contact-section-bg .container { position: relative; z-index: 2; }
.contact-box {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    padding: 2.5rem;
    border-radius: var(--border-radius-card);
    box-shadow: var(--volumetric-shadow-card);
}
.contact-details p { margin-bottom: 0.75rem; font-size: 1.1rem; color: var(--text-color); }
.contact-details .icon { color: var(--primary-color); margin-right: 0.7em; font-size: 1.2em; }

/* Statistical Widget */
.statistical-widget {
    background-color: var(--light-gray-background-alt);
    padding: 2rem;
    border-radius: var(--border-radius-card);
    margin-top: 2rem;
    box-shadow: var(--shadow-light);
}
.statistical-widget .stat-number {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    line-height: 1.1;
}
.statistical-widget .heading {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--text-color-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.footer {
    background-color: var(--neutral-dark);
    color: var(--footer-link-color);
    padding: 4rem 1.5rem 2rem;
    margin-top: auto; /* For sticky footer on short pages */
}
.footer .title.footer-title {
    color: var(--text-color-light);
    font-family: var(--font-primary);
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
}
.footer p, .footer li {
    font-size: 0.95rem;
    color: var(--footer-link-color);
    line-height: 1.6;
}
.footer a {
    color: var(--footer-link-color);
    transition: color 0.3s ease;
}
.footer a:hover {
    color: var(--primary-color);
}
.footer ul { list-style: none; margin-left: 0; }
.footer ul li { margin-bottom: 0.6rem; }
.footer .content p { color: var(--footer-link-color); }

/* Success Page */
body.success-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.success-container {
    flex-grow: 1; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 2rem;
}
.success-box {
    background-color: var(--card-background);
    padding: 3rem;
    border-radius: var(--border-radius-card);
    box-shadow: var(--volumetric-shadow-card);
    max-width: 600px;
    width: 100%;
}
.success-box .icon.is-large .fa-check-circle {
    font-size: 6rem; /* Larger icon */
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block; /* Center it */
    margin-left: auto;
    margin-right: auto;
}
.success-box .title {
    color: var(--text-color-darker);
    margin-top: 1rem; margin-bottom: 1rem; font-size: 2rem;
}
.success-box .subtitle {
    color: var(--text-color-medium); margin-bottom: 2rem; font-size: 1.1rem;
}
.success-box .button { margin-top: 1rem; }

/* Privacy & Terms Pages */
body.privacy-page main, body.terms-page main {
    padding-top: calc(var(--navbar-height) + 3rem); /* Navbar height + extra space */
    padding-bottom: 3rem;
}
.static-page-container { /* Common container for privacy/terms content */
    background-color: var(--card-background);
    padding: 2.5rem;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-light);
    margin-top: 2rem; /* Spacing from any intro text */
}
.static-page-container h1, .static-page-container h2, .static-page-container h3 {
    font-family: var(--font-primary);
    color: var(--text-color-darker);
    margin-bottom: 1.2rem;
    margin-top: 1.8rem;
}
.static-page-container h1 { font-size: 2.2rem; }
.static-page-container h2 { font-size: 1.8rem; }
.static-page-container h3 { font-size: 1.5rem; }
.static-page-container p, .static-page-container ul, .static-page-container ol {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: var(--text-color-medium);
}
.static-page-container ul, .static-page-container ol { padding-left: 1.5rem; }
.static-page-container a { font-weight: 500; }

/* Read More Links (General Style) */
a.read-more-link, .card-content a.button.is-link.is-outlined.is-small[href="#"] /* Assuming news links are # for now */ {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px; /* Space for underline */
    transition: color 0.3s ease;
    font-size: 0.9rem; /* Make them slightly smaller than main buttons */
    text-transform: uppercase; /* Match button style */
    letter-spacing: 0.5px;
}
a.read-more-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0.3); /* Start with a small underline */
    transform-origin: left;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}
a.read-more-link:hover {
    color: var(--primary-color-dark);
}
a.read-more-link:hover::after {
    transform: scaleX(1);
    background-color: var(--primary-color-dark);
}
/* Specific for News card "Leer Mas" buttons to ensure they look like links if desired */
#news .card-content .button.is-link.is-outlined.is-small {
    border: none; /* Remove border to look more like a link */
    padding-left: 0; padding-right: 0; /* Adjust padding */
    color: var(--primary-color);
    box-shadow: none;
}
#news .card-content .button.is-link.is-outlined.is-small:hover {
    color: var(--primary-color-dark);
    background-color: transparent;
    transform: none; /* No button hover transform */
    box-shadow: none;
    text-decoration: underline; /* Underline on hover for link feel */
}

/* Ensuring column widths are respected as per prompt "не меньше is-two-thirds" where applicable */
/* This is usually handled by Bulma classes, e.g. .column.is-two-thirds */
/* Just ensure custom content within those columns behaves well */
.column.is-two-thirds, .column.is-half { /* Example */
    /* Styles for content inside these common column sizes if needed */
}
.navbar-burger{
    display: none;
}