:root {
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Work Sans', sans-serif;

    /* Neomorphism & General Backgrounds */
    --color-bg-main: #f4f7f9; /* Very light gray for overall page background */
    --color-element-bg: #eaf0f6; /* Base for neumorphic elements */
    --color-shadow-light: rgba(255, 255, 255, 0.9);
    --color-shadow-dark: rgba(163, 177, 198, 0.7);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --gradient-secondary: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    --gradient-accent: linear-gradient(135deg, #ff7e5f 0%, #feb47b 100%);
    --gradient-footer: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); /* Darker blue/gray gradient for footer */
    --gradient-alt-section-bg: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);

    /* Text Colors */
    --color-text-primary: #34495e;    /* Dark grayish blue */
    --color-text-secondary: #7f8c8d;  /* Lighter grayish blue */
    --color-text-light: #FFFFFF;
    --color-text-headings: #2c3e50; /* Very dark grayish blue */
    --color-text-link: #3498db;
    --color-text-link-hover: #2980b9;

    /* Accent Colors */
    --color-accent-primary: #3498db;  /* Blue */
    --color-accent-secondary: #e67e22; /* Orange */
    --color-accent-success: #27ae60;  /* Green */
    --color-accent-error: #c0392b;    /* Red */

    /* Shadows for Neomorphism */
    --shadow-neumorphic-sm-outer: 5px 5px 10px var(--color-shadow-dark), -5px -5px 10px var(--color-shadow-light);
    --shadow-neumorphic-sm-inner: inset 3px 3px 6px var(--color-shadow-dark), inset -3px -3px 6px var(--color-shadow-light);
    --shadow-neumorphic-md-outer: 8px 8px 15px var(--color-shadow-dark), -8px -8px 15px var(--color-shadow-light);
    --shadow-neumorphic-md-inner: inset 6px 6px 12px var(--color-shadow-dark), inset -6px -6px 12px var(--color-shadow-light);
    --shadow-neumorphic-lg-outer: 12px 12px 24px var(--color-shadow-dark), -12px -12px 24px var(--color-shadow-light);

    /* Other Variables */
    --border-radius-base: 15px;
    --border-radius-small: 10px;
    --border-radius-large: 25px;
    --padding-section: 70px 0;
    --padding-card: 25px;
    --header-height: 80px;
    --transition-base: all 0.3s ease-in-out;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

.main-container {
    width: 100%;
    overflow: hidden;
}

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

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

h1 { font-size: 2.8rem; }
h2.section-title { font-size: 2.5rem; margin-bottom: 1.2em; font-weight: 700; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p {
    margin-bottom: 1.25em;
    font-size: 1rem;
    color: var(--color-text-primary);
}
p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--color-text-link);
    text-decoration: none;
    transition: var(--transition-base);
}
a:hover {
    color: var(--color-text-link-hover);
    text-decoration: underline;
}

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

ul { list-style: none; }

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

.section-title {
    text-align: center;
    color: var(--color-text-headings);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 800px;
    margin: -1em auto 50px auto;
    line-height: 1.6;
}

.alt-background {
    background: var(--gradient-alt-section-bg);
}

[style*="background-image"] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
[style*="background-image"] > .container {
    position: relative;
    z-index: 2;
}
.hero-overlay { /* Specific for Hero, also general overlay */
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}
/* For other sections with bg images and text that need overlay */
.section-padding[style*="background-image"]:not(.hero-section) .section-title,
.section-padding[style*="background-image"]:not(.hero-section) .section-subtitle {
    position: relative;
    z-index: 2; /* Above potential ::before overlay */
}

/* Column system from HTML (Bulma-like) */
.columns { display: flex; flex-wrap: wrap; margin: -0.75rem; }
.columns:not(:last-child) { margin-bottom: calc(1.5rem - 0.75rem); }
.column { display: block; flex-basis: 0; flex-grow: 1; flex-shrink: 1; padding: 0.75rem; }
.column.is-two-thirds { flex: none; width: 66.6666%; }
.column.is-half { flex: none; width: 50%; }
.columns.is-vcentered { align-items: center; }

@media screen and (max-width: 768px) {
    .column.is-two-thirds, .column.is-half { width: 100%; }
    .columns { flex-direction: column; }
}

.text-center { text-align: center; }

/* GLOBAL BUTTON STYLES */
.btn, button, input[type="submit"], input[type="button"] {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: var(--color-element-bg);
    border: none;
    padding: 12px 30px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-neumorphic-sm-outer);
    color: var(--color-accent-primary);
    transition: var(--transition-base), box-shadow 0.15s ease-in-out, transform 0.15s ease-in-out;
    text-decoration: none;
}
.btn:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    box-shadow: var(--shadow-neumorphic-sm-inner);
    color: var(--color-text-link-hover);
    text-decoration: none;
    transform: translateY(-2px);
}
.btn:active, button:active, input[type="submit"]:active, input[type="button"]:active {
    box-shadow: var(--shadow-neumorphic-sm-inner);
    transform: translateY(1px);
}
.btn-primary {
    background-image: var(--gradient-primary);
    color: var(--color-text-light);
    box-shadow: 3px 3px 8px rgba(0,0,0,0.15), var(--shadow-neumorphic-sm-outer);
}
.btn-primary:hover {
    background-image: linear-gradient(135deg, var(--gradient-primary-end) 0%, var(--gradient-primary-start) 100%);
    color: var(--color-text-light);
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.2), var(--shadow-neumorphic-sm-inner);
}
.btn-secondary {
    background-color: var(--color-element-bg);
    color: var(--color-accent-primary);
}
.btn-secondary:hover {
    background-color: var(--color-element-bg);
    box-shadow: var(--shadow-neumorphic-sm-inner);
}
.btn-link {
    background-color: transparent;
    box-shadow: none;
    color: var(--color-text-link);
    padding: 8px 10px;
    text-decoration: underline;
    font-weight: 500;
}
.btn-link:hover {
    background-color: transparent;
    box-shadow: none;
    color: var(--color-text-link-hover);
    transform: none;
}

/* Header & Navigation */
.site-header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    height: var(--header-height);
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}
.header-container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.site-header .logo img { max-height: 45px; width: auto; }
.main-nav .nav-menu { display: flex; align-items: center; }
.main-nav .nav-menu li { margin-left: 25px; }
.main-nav .nav-menu li a {
    font-family: var(--font-primary); font-weight: 500; color: var(--color-text-primary);
    padding: 10px 0; position: relative; text-decoration: none;
}
.main-nav .nav-menu li a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
    background-color: var(--color-accent-primary); transition: width 0.3s ease;
}
.main-nav .nav-menu li a:hover::after, .main-nav .nav-menu li a.active::after { width: 100%; }
.main-nav .nav-menu li a:hover { color: var(--color-accent-primary); text-decoration: none; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 1001; box-shadow: none; }
.nav-toggle:hover { box-shadow: none; }
.hamburger { display: block; position: relative; width: 25px; height: 2px; background-color: var(--color-text-headings); transition: var(--transition-base); }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; width: 100%; height: 2px; background-color: var(--color-text-headings); transition: var(--transition-base); }
.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }
.nav-toggle.active .hamburger { background-color: transparent; }
.nav-toggle.active .hamburger::before { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active .hamburger::after { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 992px) {
    .nav-toggle { display: block; }
    .main-nav .nav-menu {
        display: none; flex-direction: column; position: absolute;
        top: var(--header-height); left: 0; width: 100%;
        background-color: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
        padding: 15px 0; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border-top: 1px solid #eee;
    }
    .main-nav .nav-menu.active { display: flex; }
    .main-nav .nav-menu li { margin: 0; width: 100%; text-align: center; }
    .main-nav .nav-menu li a { display: block; padding: 12px 20px; width: 100%; }
    .main-nav .nav-menu li a::after { left: 50%; transform: translateX(-50%); bottom: 5px; }
    .main-nav .nav-menu li a:hover::after, .main-nav .nav-menu li a.active::after { width: 40%; }
}

/* Page Content Padding for fixed header on specific pages */
.page-content-padding { padding-top: calc(var(--header-height) + 40px); }

/* Hero Section */
.hero-section {
    min-height: calc(100vh - var(--header-height));
    display: flex; align-items: center; justify-content: center; text-align: center;
    color: var(--color-text-light); padding: 50px 0;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-title { font-size: 3.2rem; font-weight: 700; margin-bottom: 20px; color: var(--color-text-light); text-shadow: 2px 2px 8px rgba(0,0,0,0.7); }
.hero-subtitle { font-size: 1.25rem; margin-bottom: 35px; line-height: 1.8; color: var(--color-text-light); text-shadow: 1px 1px 4px rgba(0,0,0,0.5); }
.hero-content .btn { margin: 10px; padding: 14px 32px; font-size: 1.05rem; }
.hero-content .btn-secondary {
    background-color: transparent; border: 2px solid var(--color-text-light);
    color: var(--color-text-light); box-shadow: none;
}
.hero-content .btn-secondary:hover {
    background-color: var(--color-text-light); color: var(--color-accent-primary); box-shadow: none;
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.05rem; }
}

/* Neumorphic Card Style */
.neumorphic-card {
    background-color: var(--color-element-bg);
    border-radius: var(--border-radius-base);
    padding: var(--padding-card);
    box-shadow: var(--shadow-neumorphic-md-outer);
    transition: var(--transition-base), transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center; display: flex; flex-direction: column; align-items: center;
    margin-bottom: 30px;
    perspective: 1000px; /* For 3D hover */
}
.neumorphic-card:hover {
    transform: translateY(-5px) rotateX(3deg) rotateY(-2deg) scale(1.02);
    box-shadow: var(--shadow-neumorphic-lg-outer);
}
.neumorphic-card .card-image {
    margin-bottom: 20px; border-radius: var(--border-radius-small); overflow: hidden;
    width: 100%; height: 200px; /* Default height, can be overridden */
    display: flex; justify-content: center; align-items: center;
}
.neumorphic-card .card-image img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.neumorphic-card .card-content { width: 100%; }
.neumorphic-card .card-content h3 { margin-top: 0; color: var(--color-text-headings); font-size: 1.4rem; }
.neumorphic-card .card-content p { color: var(--color-text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* Contact Form Section (Top) */
#contact-form-top {
    /* Background from HTML */
    padding-top: calc(var(--header-height) + 50px); /* Extra padding for top form */
}
.neumorphic-form {
    background-color: var(--color-element-bg); padding: 35px;
    border-radius: var(--border-radius-large); box-shadow: var(--shadow-neumorphic-lg-outer);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin-bottom: 25px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: span 2; }
.form-group label { font-family: var(--font-primary); font-weight: 500; margin-bottom: 8px; font-size: 0.9rem; color: var(--color-text-primary); }
.form-group input[type="text"], .form-group input[type="email"], .form-group input[type="tel"], .form-group textarea {
    width: 100%; padding: 14px; border: none; border-radius: var(--border-radius-small);
    background-color: var(--color-element-bg); box-shadow: var(--shadow-neumorphic-sm-inner);
    font-family: var(--font-secondary); font-size: 1rem; color: var(--color-text-primary); transition: var(--transition-base);
}
.form-group input[type="text"]:focus, .form-group input[type="email"]:focus, .form-group input[type="tel"]:focus, .form-group textarea:focus {
    outline: none; box-shadow: var(--shadow-neumorphic-sm-inner), 0 0 0 2px var(--color-accent-primary);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.checkbox-group { display: flex; align-items: center; margin-bottom: 25px; }
.checkbox-group input[type="checkbox"] {
    margin-right: 10px; width: 20px; height: 20px; appearance: none; -webkit-appearance: none;
    background-color: var(--color-element-bg); border-radius: 5px; box-shadow: var(--shadow-neumorphic-sm-inner);
    cursor: pointer; position: relative; transition: var(--transition-base);
}
.checkbox-group input[type="checkbox"]:checked { background-color: var(--color-accent-primary); box-shadow: var(--shadow-neumorphic-sm-outer); }
.checkbox-group input[type="checkbox"]:checked::before {
    content: '✔'; color: white; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%); font-size: 14px;
}
.checkbox-group label { font-size: 0.9rem; color: var(--color-text-secondary); margin-bottom: 0; }
.checkbox-group label a { color: var(--color-text-link); }
.neumorphic-form .btn-submit-form { width: 100%; padding: 15px; font-size: 1.1rem; }
@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .neumorphic-form { padding: 25px; }
}

/* About Us Section */
.about-us-section .column.is-two-thirds p { font-size: 1.05rem; line-height: 1.8; }
.statistics-widget { padding: 25px; text-align: center; } /* Card is already centered */
.statistics-widget .widget-title { text-align: center; margin-bottom: 25px; font-size: 1.5rem; color: var(--color-text-headings); }
.statistics-widget .stat-item { display: flex; align-items: center; margin-bottom: 20px; width: 100%; justify-content: flex-start; text-align: left; }
.statistics-widget .stat-value { font-size: 2.3rem; font-weight: 700; color: var(--color-accent-primary); margin-right: 15px; min-width: 60px; text-align: right; }
.statistics-widget .stat-label { font-size: 1rem; color: var(--color-text-secondary); line-height: 1.4; }
.statistics-widget .image-container { margin-top: 25px; border-radius: var(--border-radius-small); overflow: hidden; }
.statistics-widget .image-container img { width: 100%; height: auto; object-fit: cover; }

/* Methodology Section (Timeline) */
.methodology-section { color: var(--color-text-light); }
.methodology-section .section-title, .methodology-section .section-subtitle { color: var(--color-text-light); text-shadow: 1px 1px 3px rgba(0,0,0,0.4); }
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline::after {
    content: ''; position: absolute; width: 4px; background-color: rgba(255, 255, 255, 0.3);
    top: 0; bottom: 0; left: 50%; margin-left: -2px; z-index: 1; border-radius: 2px;
}
.timeline-item { padding: 10px 40px; position: relative; background-color: transparent; width: 50%; margin-bottom: 30px; }
.timeline-item:nth-child(odd) { left: 0; padding-right: 70px; }
.timeline-item:nth-child(even) { left: 50%; padding-left: 70px; }
.timeline-icon {
    position: absolute; width: 60px; height: 60px; right: -30px;
    background-color: var(--color-element-bg); top: 50%; transform: translateY(-50%);
    border-radius: 50%; z-index: 2; display: flex; justify-content: center; align-items: center;
    box-shadow: var(--shadow-neumorphic-sm-outer);
}
.timeline-item:nth-child(even) .timeline-icon { left: -30px; }
.timeline-icon img { width: 30px; height: 30px; }
.timeline-content.neumorphic-card { /* Explicitly target the card for timeline */
    padding: var(--padding-card); background-color: var(--color-element-bg);
    position: relative; border-radius: var(--border-radius-base); box-shadow: var(--shadow-neumorphic-md-outer);
    text-align: left; align-items: flex-start;
}
.timeline-content h3 { color: var(--color-text-headings); margin-top: 0; }
.timeline-content p { color: var(--color-text-primary); font-size: 0.95rem; }
@media screen and (max-width: 768px) {
    .timeline::after { left: 30px; }
    .timeline-item { width: 100%; padding-left: 80px; padding-right: 15px; }
    .timeline-item:nth-child(odd), .timeline-item:nth-child(even) { left: 0; }
    .timeline-icon { left: 0; }
}

/* Vision Section */
.vision-section .image-container { border-radius: var(--border-radius-large); overflow: hidden; box-shadow: var(--shadow-neumorphic-lg-outer); }
.vision-section .image-container img { width: 100%; height: auto; object-fit: cover; }
.vision-section .column.is-half p { font-size: 1.05rem; line-height: 1.8; }

/* Carousel (General Styles) */
.content-carousel-container { position: relative; max-width: 100%; margin: 0 auto; }
.webinar-carousel, .team-carousel, .success-carousel {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; padding-bottom: 20px; margin-bottom: -20px;
}
.webinar-carousel::-webkit-scrollbar, .team-carousel::-webkit-scrollbar, .success-carousel::-webkit-scrollbar { display: none; }
.card.webinar-card, .card.team-member-card, .card.success-story-card {
    flex: 0 0 auto; width: calc(33.333% - 20px); margin-right: 30px;
    scroll-snap-align: start; min-height: 480px; justify-content: space-between;
}
.card.webinar-card:last-child, .card.team-member-card:last-child, .card.success-story-card:last-child { margin-right: 0; }
.carousel-control {
    position: absolute; top: 50%; transform: translateY(-50%); background-color: var(--color-element-bg);
    color: var(--color-accent-primary); border: none; border-radius: 50%; width: 45px; height: 45px;
    font-size: 1.3rem; cursor: pointer; z-index: 10; box-shadow: var(--shadow-neumorphic-md-outer);
    transition: var(--transition-base); display: flex; justify-content: center; align-items: center;
}
.carousel-control:hover { box-shadow: var(--shadow-neumorphic-md-inner); background-color: var(--color-accent-primary); color: var(--color-text-light); }
.carousel-control.prev { left: -20px; }
.carousel-control.next { right: -20px; }
@media (max-width: 1024px) {
    .card.webinar-card, .card.team-member-card, .card.success-story-card { width: calc(50% - 15px); margin-right: 30px; min-height: 460px; }
}
@media (max-width: 768px) {
    .card.webinar-card, .card.team-member-card, .card.success-story-card { width: calc(100% - 10px); margin-right: 20px; min-height: auto; }
    .carousel-control.prev { left: 5px; } .carousel-control.next { right: 5px; }
}

/* Webinars Section Specifics */
.webinars-section .section-title, .webinars-section .section-subtitle { color: var(--color-text-light); text-shadow: 1px 1px 3px rgba(0,0,0,0.4); }
.webinar-card .webinar-date { font-size: 0.9rem; color: var(--color-text-secondary); margin-bottom: 10px; font-weight: 500; }
.webinar-card .btn { margin-top: auto; }

/* Team Section Specifics */
.team-member-card .card-image { height: 200px; width: 200px; border-radius: 50%; margin: 0 auto 20px auto; } /* Centered by card flex */
.team-member-card .card-image img { border-radius: 50%; }
.team-member-card .card-content { text-align: center; } /* Ensure text content is centered */
.team-member-card .member-role { font-size: 0.95rem; color: var(--color-accent-primary); font-weight: 600; margin-bottom: 10px; }

/* Success Stories Specifics */
.success-stories-section .section-title, .success-stories-section .section-subtitle { color: var(--color-text-light); text-shadow: 1px 1px 3px rgba(0,0,0,0.4); }
.success-story-card .client-name { font-style: italic; color: var(--color-text-secondary); margin-bottom: 10px; font-weight: 500; }
.success-story-card .btn-link { display: inline-block; margin-top: 15px; font-weight: 600; }

/* Events Calendar Section */
.events-list { max-width: 900px; margin: 0 auto; }
.event-item.neumorphic-card { display: flex; flex-direction: row; align-items: flex-start; text-align: left; margin-bottom: 30px; }
.event-date-badge {
    background-image: var(--gradient-primary); color: var(--color-text-light);
    border-radius: var(--border-radius-small); padding: 15px; text-align: center;
    margin-right: 25px; min-width: 90px; display: flex; flex-direction: column;
    justify-content: center; align-items: center; box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}
.event-date-badge .month { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; display: block; margin-bottom: 3px; }
.event-date-badge .day { font-size: 2rem; font-weight: 700; display: block; line-height: 1; }
.event-date-badge .year { font-size: 0.8rem; display: block; margin-top: 3px; opacity: 0.8; }
.event-details { flex-grow: 1; }
.event-details h3 { margin-top: 0; font-size: 1.5rem; }
.event-details p { margin-bottom: 8px; font-size: 0.95rem; }
.event-details .event-time, .event-details .event-location { font-weight: 500; color: var(--color-text-secondary); }
.event-details .btn-link { margin-top: 10px; display: inline-block; font-weight: 600; }
@media (max-width: 600px) {
    .event-item.neumorphic-card { flex-direction: column; align-items: center; text-align: center; }
    .event-date-badge { margin-right: 0; margin-bottom: 20px; }
}

/* Pricing Section */
.pricing-section .section-title, .pricing-section .section-subtitle, .pricing-section .pricing-footnote { color: var(--color-text-light); text-shadow: 1px 1px 3px rgba(0,0,0,0.4); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; align-items: stretch; }
.pricing-card { display: flex; flex-direction: column; justify-content: space-between; text-align: center; overflow: hidden; position: relative; border: 3px solid transparent; }
.pricing-card.popular { border-color: var(--color-accent-secondary); box-shadow: var(--shadow-neumorphic-lg-outer), 0 0 15px var(--color-accent-secondary); transform: scale(1.03); }
.popular-badge {
    position: absolute; top: 15px; right: -35px; background-color: var(--color-accent-secondary);
    color: white; padding: 5px 30px; font-size: 0.8rem; font-weight: 600; transform: rotate(45deg); z-index: 1;
}
.pricing-header { padding: 20px 0; }
.pricing-header h3 { font-size: 1.7rem; margin-bottom: 10px; }
.pricing-header .price { font-size: 2.5rem; font-weight: 700; color: var(--color-accent-primary); margin-bottom: 5px; }
.pricing-header .price span { font-size: 1rem; font-weight: 400; color: var(--color-text-secondary); }
.pricing-card.popular .pricing-header .price { color: var(--color-accent-secondary); }
.features-list { margin: 20px 0; padding: 0 15px; text-align: left; }
.features-list li { padding: 10px 0; border-bottom: 1px dashed #dce0e4; display: flex; align-items: center; font-size: 0.95rem; color: var(--color-text-primary); }
.features-list li:last-child { border-bottom: none; }
.features-list li img { width: 18px; height: 18px; margin-right: 12px; }
.pricing-card .btn { width: auto; max-width: calc(100% - 40px); margin: 0 auto var(--padding-card) auto; display: block; }
.pricing-footnote { margin-top: 40px; font-size: 0.9rem; text-align: center; }

/* External Resources Section */
.resources-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; }
.resource-card.neumorphic-card { text-align: left; align-items: flex-start; padding: 25px; }
.resource-card .resource-title { font-size: 1.25rem; margin-bottom: 10px; }
.resource-card .resource-title a { color: var(--color-text-headings); }
.resource-card .resource-title a:hover { color: var(--color-accent-primary); }
.resource-card .resource-description { font-size: 0.9rem; line-height: 1.6; color: var(--color-text-secondary); margin-bottom: 15px; }
.resource-card .btn-link { font-weight: 600; font-size: 0.9rem; }

/* Footer */
.site-footer { background-image: var(--gradient-footer); color: #bdc3c7; padding: 60px 0 30px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 40px; }
.footer-column h4 { font-family: var(--font-primary); font-size: 1.3rem; color: var(--color-text-light); margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-column h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background-color: var(--color-accent-primary); }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a { color: #bdc3c7; text-decoration: none; transition: var(--transition-base); }
.footer-column ul li a:hover { color: var(--color-text-light); padding-left: 5px; text-decoration: none; }
.footer-column p { color: #bdc3c7; font-size: 0.95rem; line-height: 1.7; margin-bottom: 10px; }
.footer-column p a { color: #bdc3c7; } .footer-column p a:hover { color: var(--color-text-light); }
.social-links-text li a { /* Already styled by .footer-column ul li a */ }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 0.9rem; color: #95a5a6; }
.footer-bottom p { margin-bottom: 0; color: #95a5a6; }

/* Success Page Specific Styles */
body.success-page-body { display: flex; flex-direction: column; min-height: 100vh; }
.success-page-content {
    flex-grow: 1; display: flex; flex-direction: column; justify-content: center; align-items: center;
    text-align: center; padding: 40px 20px; padding-top: calc(var(--header-height) + 40px);
}
.success-page-content .success-icon::before {
    content: '✔'; display: block; width: 80px; height: 80px; line-height: 80px;
    font-size: 3rem; border-radius: 50%; background-color: var(--color-element-bg);
    box-shadow: var(--shadow-neumorphic-lg-outer); color: var(--color-accent-success); margin-bottom: 25px;
}
.success-page-content h1 { font-size: 2.2rem; color: var(--color-text-headings); margin-bottom: 15px; }
.success-page-content p { font-size: 1.1rem; color: var(--color-text-secondary); margin-bottom: 30px; max-width: 600px; }

/* Static Page (Privacy, Terms) Content Styles */
.static-page-content { padding-top: calc(var(--header-height) + 50px); padding-bottom: 50px; }
.static-page-content .container h1 { margin-bottom: 30px; text-align: left; }
.static-page-content .container h2 { margin-top: 40px; margin-bottom: 15px; font-size: 1.8rem; text-align: left; }
.static-page-content .container p, .static-page-content .container ul, .static-page-content .container ol {
    text-align: left; margin-bottom: 1.5em; line-height: 1.8;
}
.static-page-content .container ul { list-style: disc; padding-left: 30px; }
.static-page-content .container ol { list-style: decimal; padding-left: 30px; }
.static-page-content .container ul li, .static-page-content .container ol li { margin-bottom: 0.5em; }

/* Cookie Consent Popup - styles are inline in HTML, ensure no major conflicts */
#cookieConsentPopup {
    /* Styles are primarily inline as per user request */
    /* Ensure it doesn't get overridden unintentionally */
    box-sizing: border-box; /* Good practice for popups */
}
#cookieConsentPopup p {
    font-family: var(--font-secondary); /* Match body font if needed */
    margin-bottom: 15px; /* Adjust spacing if inline style is not enough */
}
#cookieConsentPopup button {
    font-family: var(--font-primary); /* Match button font */
}

/* Animations - Placeholder for JS triggered scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}