/* style.css - Футуристический дизайн для Бизнес Консалтинга в Грузии */

/* 1. Переменные ================================================= */
:root {
    --primary-color: #483D8B; /* Темный сине-фиолетовый */
    --primary-color-darker: #3a306f;
    --secondary-color: #9370DB; /* Средний фиолетовый */
    --secondary-color-lighter: #a380e0;
    --accent-color: #4682B4; /* Стальной синий */
    --accent-color-light: #5a9cd0;

    --text-color-dark: #222222;
    --text-color-medium: #555555;
    --text-color-light: #f0f0f0;
    --text-color-subtle: #aaaaaa;

    --background-dark: #12121f;
    --background-dark-translucent: rgba(18, 18, 31, 0.9);
    --background-light: #ffffff;
    --background-grey: #f4f7f6;
    --background-card: var(--background-light); /* По умолчанию для светлой темы */

    --border-color: #dbdbdb;
    --border-color-dark: #444444;
    --border-radius-small: 4px;
    --border-radius-medium: 8px;
    --border-radius-large: 12px;

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

    --shadow-light: 0 4px 8px rgba(0,0,0,0.05);
    --shadow-medium: 0 8px 16px rgba(0,0,0,0.1);
    --shadow-strong: 0 12px 24px rgba(0,0,0,0.15);

    --transition-speed: 0.3s;
    --transition-timing: ease-in-out;
}

/* 2. Глобальные стили и сбросы ================================ */
html {
    scroll-behavior: smooth;
    font-size: 16px; /* Базовый размер для REM */
}

body {
    font-family: var(--font-body);
    color: var(--text-color-dark);
    background-color: var(--background-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Предотвращение горизонтальной прокрутки */
}

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

.title { /* Bulma override/enhancement */
    font-family: var(--font-heading);
    color: var(--text-color-dark);
    font-weight: 900;
}
.subtitle { /* Bulma override/enhancement */
    font-family: var(--font-body);
    color: var(--text-color-medium);
    font-weight: 400;
}

p {
    margin-bottom: 1.25rem;
    font-size: clamp(0.9rem, 1.5vw + 0.5rem, 1.1rem); /* Адаптивная типографика */
}

a {
    color: var(--accent-color);
    transition: color var(--transition-speed) var(--transition-timing);
    text-decoration: none;
}
a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.section {
    padding: clamp(3rem, 8vw, 6rem) 1.5rem; /* Адаптивные отступы */
}

.container {
    max-width: 1200px; /* Или стандартный Bulma */
    margin-left: auto;
    margin-right: auto;
}

/* Общие стили для кнопок */
.button, button, input[type="submit"], input[type="button"], input[type="reset"] {
    font-family: var(--font-heading);
    font-weight: 500;
    border-radius: var(--border-radius-medium);
    padding: 0.75em 1.75em;
    transition: transform var(--transition-speed) var(--transition-timing),
                box-shadow var(--transition-speed) var(--transition-timing),
                background-color var(--transition-speed) var(--transition-timing);
    border: 1px solid transparent;
    cursor: pointer;
    font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
}
.button:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover, input[type="reset"]:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}
.button:active, button:active, input[type="submit"]:active, input[type="button"]:active, input[type="reset"]:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-light);
}

.button.is-primary, button.is-primary, input[type="submit"].is-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-color-light);
}
.button.is-primary:hover, button.is-primary:hover, input[type="submit"].is-primary:hover {
    background-color: var(--primary-color-darker);
    border-color: var(--primary-color-darker);
}

.button.is-secondary { /* Пример дополнительного стиля кнопки */
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-color-light);
}
.button.is-secondary:hover {
    background-color: var(--secondary-color-lighter);
    border-color: var(--secondary-color-lighter);
}

.button.is-large {
    padding: 1em 2.5em;
    font-size: clamp(1rem, 1.2vw + 0.5rem, 1.2rem);
}

.section-title {
    text-align: center;
    margin-bottom: clamp(2rem, 6vw, 4rem);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--text-color-dark);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.dark-section {
    background-color: var(--background-dark);
    color: var(--text-color-light);
}
.dark-section .section-title,
.dark-section .title,
.dark-section .subtitle,
.dark-section p,
.dark-section label,
.dark-section .label,
.dark-section .heading { /* Bulma heading class */
    color: var(--text-color-light);
}
.dark-section .section-title {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}
.dark-section a {
    color: var(--secondary-color-lighter);
}
.dark-section a:hover {
    color: var(--text-color-light);
}
.dark-section .card { /* Карточки на темном фоне */
    background-color: #1e1e2f; /* Чуть светлее основного темного фона */
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}
.dark-section .card .title, .dark-section .card h3, .dark-section .card h4 {
    color: var(--text-color-light);
}
.dark-section .card .content, .dark-section .card p, .dark-section .card .subtitle, .dark-section .card .is-size-7 {
    color: var(--text-color-subtle);
}
.dark-section .card .progress-indicator-container .label {
    color: var(--text-color-subtle) !important;
}

/* 3. Header / Navbar =========================================== */
.navbar.is-fixed-top {
    background-color: var(--background-dark-translucent) !important; /* HTML inline style override */
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.navbar-item, .navbar-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-color-light) !important; /* Ensure text color from HTML */
    transition: color var(--transition-speed) var(--transition-timing);
}
.navbar-item:hover, .navbar-link:hover {
    background-color: transparent !important;
    color: var(--secondary-color) !important;
}
.navbar-burger {
    color: var(--text-color-light) !important;
}
.navbar-dropdown {
    background-color: var(--background-dark) !important;
    border-top: 2px solid var(--secondary-color);
    border-radius: 0 0 var(--border-radius-medium) var(--border-radius-medium);
}
.navbar-dropdown .navbar-item {
    color: var(--text-color-light) !important;
}
.navbar-dropdown .navbar-item:hover {
    background-color: var(--primary-color) !important;
    color: var(--text-color-light) !important;
}
.navbar-brand .navbar-item {
    font-size: 1.5rem;
    font-weight: 900;
}

@media screen and (max-width: 1023px) {
    .navbar-menu {
        background-color: var(--background-dark-translucent) !important; /* HTML inline style override */
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        padding: 0.5rem 0;
    }
}

/* 4. Hero Section ============================================== */
#hero {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; /* Simple parallax effect */
    color: var(--text-color-light); /* Default text color for hero content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative; /* For overlay */
}

#hero .hero-body {
    padding-top: 8rem; /* Adjust for fixed navbar */
    padding-bottom: 4rem;
    z-index: 2; /* Ensure content is above overlay */
}

#hero .title.is-1 {
    font-size: clamp(2.8rem, 7vw, 5rem); /* Адаптивная типографика */
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    color: #FFFFFF !important;
}
#hero .subtitle.is-3 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
    margin: 1.5rem auto 2.5rem;
    max-width: 700px;
    color: #FFFFFF !important;
}
#hero .button.is-primary {
    padding: 1em 2.5em;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(147, 112, 219, 0.4); /* Shadow matching secondary color */
}
#hero .hero-foot {
    z-index: 2;
}
#hero .hero-foot .icon svg {
    animation: bounceArrow 2s infinite;
}
@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Overlay for hero background image to ensure text readability */
.text-on-image-overlay::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}
.text-on-image-overlay > * {
    position: relative;
    z-index: 2;
}

/* Statistical Widgets (Hero and Clientele) */
.statistical-widget .heading {
    color: var(--secondary-color); /* For Hero specifically */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.statistical-widget .title {
    color: var(--text-color-light); /* For Hero specifically */
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-top: 0.25rem;
}

.statistical-widgets-bar .box {
    background-color: var(--background-grey);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    transition: transform var(--transition-speed) var(--transition-timing), box-shadow var(--transition-speed) var(--transition-timing);
}
.statistical-widgets-bar .box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}
.statistical-widgets-bar .heading {
    color: var(--text-color-medium);
    font-size: 1rem;
}
.statistical-widgets-bar .title {
    color: var(--primary-color);
    font-size: clamp(2.2rem, 5vw, 3rem);
    margin-top: 0.5rem;
}


/* 5. Cards (Features, Team, Testimonials, etc.) ================ */
.card {
    background-color: var(--background-card);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: transform var(--transition-speed) var(--transition-timing), box-shadow var(--transition-speed) var(--transition-timing);
    display: flex;
    flex-direction: column;
    height: 100%; /* For equal height cards in columns */
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.card .card-image { /* Bulma class */
    overflow: hidden; /* Ensure image respects border-radius if card has padding */
    position: relative; /* For potential overlays on image */
}
.card .card-image.image-container { /* Custom class if used to wrap img */
    display: block; /* Or flex if needed for content on image */
    width: 100%;
}
.card .card-image img,
.card .image-container img {
    width: 100%;
    height: 200px; /* Default height, can be overridden per section */
    object-fit: cover;
    display: block; /* Remove extra space below image */
    transition: transform 0.4s var(--transition-timing);
}
.card:hover .card-image img,
.card:hover .image-container img {
    transform: scale(1.05);
}

.card .card-content {
    padding: 1.5rem;
    flex-grow: 1; /* Allows content to push footer down in flex column card */
    display: flex;
    flex-direction: column;
}
.card .card-content .title {
    margin-bottom: 0.75rem;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}
.card .card-content .subtitle {
    margin-bottom: 1rem;
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: var(--text-color-medium);
}
.card .card-content .content {
    font-size: clamp(0.9rem, 2vw, 1rem);
    flex-grow: 1; /* Ensure content takes space if card footer needs to be at bottom */
}
.card .card-content .content p:last-child {
    margin-bottom: 0;
}
.card .progress-indicator-container {
    margin-top: auto; /* Push progress to bottom if card-content is flex */
    padding-top: 1rem;
}


/* Specific card types */
/* Team Cards */
#team .card .card-content {
    text-align: center;
}
#team .card .card-image img {
    height: 250px; /* Specific height for team member photos */
}
#team .card .subtitle {
    color: var(--secondary-color);
}

/* Testimonial Cards */
#testimonials .testimonial-card {
    background-color: rgba(255, 255, 255, 0.1); /* Glassmorphism hint on colored bg */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-color-light);
}
#testimonials .testimonial-card .title,
#testimonials .testimonial-card .subtitle,
#testimonials .testimonial-card .content,
#testimonials .testimonial-card time {
    color: var(--text-color-light);
}
#testimonials .testimonial-card .media-left .image img {
    border: 2px solid var(--secondary-color);
}
#testimonials .testimonial-card .content {
    font-style: italic;
    border-left: 3px solid var(--secondary-color);
    padding-left: 1rem;
    margin-top: 1rem;
}

/* External Resource Cards */
#resources .resource-card .card-content {
    text-align: left;
}
#resources .resource-card .title a {
    color: var(--text-color-light); /* On dark section, links from variables */
    transition: color var(--transition-speed) ease;
}
#resources .resource-card .title a:hover {
    color: var(--secondary-color-lighter);
}
#resources .resource-card p.content {
    color: var(--text-color-subtle);
}


/* 6. Progress Indicators ======================================= */
.progress { /* Bulma class */
    height: 0.75rem;
    border-radius: var(--border-radius-small);
    background-color: #e0e0e0; /* Track color */
}
.progress::-webkit-progress-bar {
    background-color: #e0e0e0;
    border-radius: var(--border-radius-small);
}
.progress::-webkit-progress-value {
    background-color: var(--primary-color); /* Default fill color */
    border-radius: var(--border-radius-small);
    transition: width 0.5s ease-in-out;
}
.progress::-moz-progress-bar {
    background-color: var(--primary-color);
    border-radius: var(--border-radius-small);
    transition: width 0.5s ease-in-out;
}
.progress.is-primary::-webkit-progress-value { background-color: var(--primary-color); }
.progress.is-primary::-moz-progress-bar { background-color: var(--primary-color); }
.progress.is-link::-webkit-progress-value { background-color: var(--accent-color); }
.progress.is-link::-moz-progress-bar { background-color: var(--accent-color); }
.progress.is-success::-webkit-progress-value { background-color: #48c774; } /* Bulma success */
.progress.is-success::-moz-progress-bar { 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-danger::-webkit-progress-value { background-color: #f14668; } /* Bulma danger */
.progress.is-danger::-moz-progress-bar { background-color: #f14668; }

.progress-indicator-container .label {
    font-size: 0.8rem;
    color: var(--text-color-medium);
    margin-bottom: 0.25rem;
}

/* 7. Timeline (Our Process Section) ============================ */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem 0;
}
.timeline-container::before { /* The vertical line */
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--secondary-color); /* Line color on dark background */
    border-radius: 2px;
}
.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}
.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 50px; /* Space from line */
    text-align: right;
}
.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 50px; /* Space from line */
    text-align: left;
}
.timeline-marker {
    position: absolute;
    top: 0; /* Adjust if content has a heading that makes it taller */
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--text-color-light); /* Marker dot color */
    border: 4px solid var(--secondary-color); /* Marker border color */
    z-index: 1;
}
.timeline-item:nth-child(odd) .timeline-marker {
    right: -10px; /* (20/2) */
    transform: translateX(0%); /* Adjust based on padding-right */
}
.timeline-item:nth-child(even) .timeline-marker {
    left: -10px;
    transform: translateX(0%);
}
.timeline-content.card {
    position: relative; /* To ensure it's above the line visually if overlapping */
    background-color: #1e1e2f; /* Card background on dark timeline section */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.timeline-content .heading {
    color: var(--secondary-color);
    font-weight: bold;
}
.timeline-content .title {
    color: var(--text-color-light);
    font-size: 1.4rem;
    margin-top: 0.5rem;
}
.timeline-content p:not(.title):not(.heading) {
    color: var(--text-color-subtle);
    font-size: 0.95rem;
}

@media screen and (max-width: 768px) {
    .timeline-container::before {
        left: 10px;
        transform: translateX(0);
    }
    .timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        text-align: left !important; /* Override alternating text-align */
        left: 0 !important; /* Override alternating left */
    }
    .timeline-item:nth-child(even) {
        left: 0 !important; /* Override for even items */
    }
    .timeline-marker {
        left: 0px !important; /* Adjust based on new line position */
        transform: translateX(0%) !important;
    }
}

/* 8. Workshops Section ========================================= */
#workshops .card .card-image img {
    height: 300px; /* Or adjust as needed */
}
#workshops .card .subtitle {
    color: var(--accent-color);
    font-weight: 500;
}
#workshops .card ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 1rem;
}

/* 9. Clientele Section ========================================= */
#clientele img {
    max-height: 60px; /* Adjust logo size */
    width: auto;
    margin: 1rem;
    filter: grayscale(80%);
    opacity: 0.7;
    transition: filter var(--transition-speed) var(--transition-timing), opacity var(--transition-speed) var(--transition-timing);
}
#clientele img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* 10. Media Section ============================================ */
#media .box {
    background-color: var(--background-grey);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-light);
    transition: box-shadow var(--transition-speed) var(--transition-timing);
}
#media .box:hover {
    box-shadow: var(--shadow-medium);
}
#media .media + .media { /* Bulma class */
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}
#media .media .image img {
    border-radius: var(--border-radius-small);
}
#media .media-content strong {
    color: var(--primary-color);
}
#media .media-content small a {
    color: var(--accent-color);
    font-weight: 500;
}
#media .media-content small a:hover {
    text-decoration: underline;
}


/* 11. FAQ Section ============================================== */
.faq-item + .faq-item {
    margin-top: 1rem;
}
.faq-question.button {
    background-color: var(--background-grey);
    border: 1px solid var(--border-color);
    color: var(--text-color-dark);
    text-align: left;
    font-weight: 600;
    justify-content: space-between !important; /* Bulma override */
}
.faq-question.button:hover {
    background-color: #e8e8e8;
    border-color: #c0c0c0;
}
.faq-question.button.is-active { /* When answer is shown */
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border-color: var(--primary-color);
}
.faq-question.button.is-active .icon svg {
    transform: rotate(180deg);
    stroke: var(--text-color-light);
}
.faq-question .icon svg {
    transition: transform var(--transition-speed) var(--transition-timing);
    stroke: var(--primary-color);
}
.faq-answer {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-top: none;
    background-color: var(--background-light);
    border-radius: 0 0 var(--border-radius-medium) var(--border-radius-medium);
    animation: fadeInAnswer 0.5s ease-in-out;
}
@keyframes fadeInAnswer {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 12. Contact Section ========================================== */
#contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}
#contact .label { /* Bulma class */
    color: var(--text-color-light);
    font-weight: 500;
}
#contact .input, #contact .textarea, #contact .select select {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--text-color-light);
    border-radius: var(--border-radius-medium);
    box-shadow: none; /* Remove Bulma's default shadow */
}
#contact .input::placeholder, #contact .textarea::placeholder {
    color: rgba(255,255,255,0.6);
}
#contact .input:focus, #contact .textarea:focus, #contact .select select:focus {
    background-color: rgba(255,255,255,0.2);
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.125em rgba(147, 112, 219, 0.35); /* Secondary color focus glow */
    color: var(--text-color-light);
}
#contact .select:not(.is-multiple):not(.is-loading)::after { /* Arrow for select */
    border-color: var(--secondary-color);
}
#contact .checkbox label, #contact .checkbox a { /* Checkbox in contact form */
    color: var(--text-color-light) !important;
}
#contact .checkbox a {
    text-decoration: underline;
    color: var(--secondary-color-lighter) !important;
}
#contact .checkbox input[type="checkbox"] {
    margin-right: 0.5em;
}
#contact .button.is-primary { /* Specific button in contact section */
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}
#contact .button.is-primary:hover {
    background-color: var(--secondary-color-lighter);
    border-color: var(--secondary-color-lighter);
}

/* 13. Footer =================================================== */
.footer {
    background-color: var(--background-dark);
    color: var(--text-color-subtle);
    padding: 3rem 1.5rem 2rem; /* Reduced bottom padding slightly */
}
.footer .title {
    color: var(--text-color-light);
}
.footer a {
    color: var(--text-color-subtle);
    transition: color var(--transition-speed) var(--transition-timing);
}
.footer a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}
.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer ul li {
    margin-bottom: 0.5rem;
}
.footer hr {
    background-color: var(--border-color-dark);
    height: 1px;
}
.footer .content p {
    color: var(--text-color-subtle);
    font-size: 0.9rem;
}
.footer .content p:last-child {
    margin-bottom: 0;
}

/* Footer social links (text-based) */
.footer .column ul li a[target="_blank"] { /* Style for social links */
    display: inline-block;
    padding: 0.2em 0;
}
.footer .column ul li a[target="_blank"]:hover {
    color: var(--secondary-color); /* Highlight on hover */
}

/* 14. ScrollReveal Animations ================================== */
/* Elements to be animated by ScrollReveal.js will have 'data-sr' */
/* ScrollReveal.js adds its own classes, but this can be a fallback or initial state */
[data-sr] {
    /*visibility: hidden; !* Hide until ScrollReveal makes it visible *!*/
}
/* Example of how ScrollReveal might apply styles (JS handles this usually)
.sr-init { visibility: hidden; }
.sr-load { visibility: visible; transition: all 0.8s ease-out; }
.sr-load-delay { opacity: 0; transform: translateY(20px); }
.is-visible { opacity: 1; transform: translateY(0); }
*/

/* 15. Page-Specific Styles ===================================== */
/* success.html */
.success-page-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px); /* Account for header */
    text-align: center;
    padding: 2rem;
    background-color: var(--background-light);
}
.success-page-container .icon {
    color: var(--primary-color); /* Or Bulma success color */
    margin-bottom: 1.5rem;
}
.success-page-container .icon svg {
    width: 80px;
    height: 80px;
}
.success-page-container .title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.success-page-container .button {
    margin-top: 2rem;
}

/* privacy.html & terms.html */
.privacy-page-container,
.terms-page-container {
    padding-top: 100px; /* Avoid overlap with fixed header */
    padding-bottom: 3rem;
    background-color: var(--background-light);
}
.privacy-page-container .content h1, .terms-page-container .content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}
.privacy-page-container .content h2, .terms-page-container .content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}
.privacy-page-container .content p, .terms-page-container .content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-color-medium);
}
.privacy-page-container .content ul, .terms-page-container .content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}


/* 16. Utility Classes ========================================== */
.read-more-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}
.read-more-link::after {
    content: '→';
    margin-left: 0.5em;
    transition: transform var(--transition-speed) var(--transition-timing);
    display: inline-block;
}
.read-more-link:hover {
    color: var(--primary-color);
    text-decoration: none; /* Keep underline, or remove if preferred */
}
.read-more-link:hover::after {
    transform: translateX(5px);
}

/* Simple Parallax for background images (if desired globally) */
/*
.parallax-background {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
*/

/* 17. Responsive Adjustments =================================== */
@media screen and (max-width: 768px) {
    .section {
        padding: clamp(2rem, 6vw, 4rem) 1rem;
    }
    .section-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
        margin-bottom: clamp(1.5rem, 5vw, 3rem);
    }
    .columns.is-multiline .column { /* Ensure cards stack nicely */
        margin-bottom: 1.5rem;
    }
    #hero .hero-body {
        padding-top: 6rem; /* Adjust for navbar on mobile */
    }
    #hero .title.is-1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    #hero .subtitle.is-3 {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }
    .statistical-widgets-bar .column {
        margin-bottom: 1rem;
    }
}