/* CSS Variables */
:root {
    --color-primary: #0A84FF; /* Bright Blue */
    --color-secondary: #00A6A6; /* Teal - Analogous 1 */
    --color-accent: #FF9F1C; /* Orange - Contrast Accent */

    --color-neutral-light: #F5F7FA; /* Main Background - Very Light Gray/Off-White */
    --color-neutral-medium: #E1E8F0; /* For borders or slightly darker neumorphic elements */
    --color-neutral-dark: #333D4B; /* Dark Slate Gray - Main Text */
    --color-white: #FFFFFF;
    --color-black: #000000;

    --color-text-heading: #1D2A39; /* Darker for headings */
    --color-text-body: var(--color-neutral-dark);
    --color-text-light: var(--color-white);
    --color-text-subtle: #6C757D;
    --color-text-link: var(--color-primary);
    --color-text-link-hover: var(--color-secondary);

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Work Sans', sans-serif;

    --header-height: 80px;
    --border-radius-small: 8px;
    --border-radius-medium: 12px;
    --border-radius-large: 20px;

    /* Neuromorphic Shadows (Base BG: --color-neutral-light) */
    --shadow-light-source: var(--color-white);
    --shadow-dark-source: #D1D9E6; /* Derived from a darker shade of neutral-light */

    --neumorphic-shadow-convex: 6px 6px 12px var(--shadow-dark-source), -6px -6px 12px var(--shadow-light-source);
    --neumorphic-shadow-concave: inset 6px 6px 12px var(--shadow-dark-source), inset -6px -6px 12px var(--shadow-light-source);
    --neumorphic-shadow-hover: 8px 8px 16px var(--shadow-dark-source), -8px -8px 16px var(--shadow-light-source);
    --neumorphic-shadow-active: 4px 4px 8px var(--shadow-dark-source), -4px -4px 8px var(--shadow-light-source); /* Softer for active */


    --transition-elastic: cubic-bezier(0.68, -0.55, 0.27, 1.55);
    --transition-smooth: ease-in-out;
    --transition-duration: 0.3s;

    --color-primary-alpha: rgba(10, 132, 255, 0.25);
    --color-neutral-light-transparent: rgba(245, 247, 250, 0.85);
    --color-neutral-light-transparent-strong: rgba(245, 247, 250, 0.98);
}

/* Base & Reset Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--color-text-body);
    background-color: var(--color-neutral-light);
    overflow-x: hidden; /* Prevent horizontal scroll from AOS */
}

main {
    padding-top: var(--header-height); /* For fixed header */
}

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

a {
    color: var(--color-text-link);
    text-decoration: none;
    transition: color var(--transition-duration) var(--transition-smooth);
}

a:hover {
    color: var(--color-text-link-hover);
}

ul {
    list-style: none;
}

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

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--color-text-body);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-text-heading);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    color: var(--color-text-subtle);
    font-size: 1.1rem;
}

.subsection-title {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--color-text-heading);
}

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

.section-padding {
    padding: 80px 0;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-neutral-light-transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: background-color var(--transition-duration) var(--transition-smooth), box-shadow var(--transition-duration) var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-heading);
}

.main-navigation .nav-list {
    display: flex;
    align-items: center;
}

.main-navigation .nav-list li {
    margin-left: 25px;
}

.main-navigation .nav-list li a {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-text-body);
    padding: 10px 5px;
    position: relative;
    transition: color var(--transition-duration) var(--transition-smooth);
}

.main-navigation .nav-list li a:hover,
.main-navigation .nav-list li a.active { /* Add .active class via JS for current page/section */
    color: var(--color-primary);
}

.main-navigation .nav-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    transition: width var(--transition-duration) var(--transition-smooth);
}

.main-navigation .nav-list li a:hover::after,
.main-navigation .nav-list li a.active::after {
    width: 100%;
}

/* Hamburger Menu */
.menu-toggle {
    display: none; /* Hidden by default, shown on mobile */
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001; /* Above nav list on mobile */
}

.hamburger-icon {
    width: 28px;
    height: 20px; /* Adjusted height */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--color-text-heading);
    border-radius: 3px;
    transition: all var(--transition-duration) var(--transition-elastic);
}

.menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg); /* Adjusted for new height */
}
.menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}
.menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg); /* Adjusted for new height */
}


/* Footer */
.site-footer {
    background-color: var(--color-neutral-dark);
    color: var(--color-text-subtle);
    padding: 60px 0 30px;
}

.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-heading);
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a, .footer-social-links a {
    color: var(--color-text-subtle);
    font-size: 0.9rem;
    transition: color var(--transition-duration) var(--transition-smooth);
}

.footer-links a:hover, .footer-social-links a:hover {
    color: var(--color-primary);
}

.footer-social-links li {
    display: inline-block; /* For horizontal layout if needed */
    margin-right: 15px; /* Or manage spacing via flex on ul */
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

/* Global Components */

/* Buttons */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: var(--border-radius-medium);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border: none;
    transition: all var(--transition-duration) var(--transition-elastic);
    background-color: var(--color-neutral-light);
    color: var(--color-text-body);
    box-shadow: var(--neumorphic-shadow-convex);
}

.btn:hover {
    box-shadow: var(--neumorphic-shadow-hover);
    transform: translateY(-2px);
}

.btn:active, .btn.active {
    box-shadow: var(--neumorphic-shadow-concave);
    transform: translateY(1px);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 4px 4px 10px rgba(0, 80, 158, 0.3), -4px -4px 10px rgba(255, 255, 255, 0.7), inset 1px 1px 2px rgba(255,255,255,0.5), inset -1px -1px 2px rgba(0,0,0,0.1);
}
.btn-primary:hover {
    background-color: #005cb2; /* Darken primary */
    box-shadow: 6px 6px 12px rgba(0, 80, 158, 0.4), -6px -6px 12px rgba(255, 255, 255, 0.8);
}
.btn-primary:active {
    background-color: #004c93;
    box-shadow: inset 4px 4px 8px rgba(0, 80, 158, 0.5), inset -2px -2px 5px rgba(255,255,255,0.6);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    box-shadow: 4px 4px 10px rgba(0, 134, 163, 0.3), -4px -4px 10px rgba(255, 255, 255, 0.7);
}
.btn-secondary:hover {
    background-color: #007a8c; /* Darken secondary */
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-white);
     box-shadow: 4px 4px 10px rgba(255, 159, 28, 0.3), -4px -4px 10px rgba(255, 255, 255, 0.7);
}
.btn-accent:hover {
    background-color: #e88f0a; /* Darken accent */
}

.btn-hero {
    padding: 15px 35px;
    font-size: 1.1rem;
}

.btn-link {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    background-color: transparent !important; /* Override .btn styles */
    box-shadow: none !important;
}
.btn-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px; /* slight offset */
    left: 0;
    background-color: var(--color-accent);
    transition: width var(--transition-duration) var(--transition-smooth);
}
.btn-link:hover::after {
    width: 100%;
}
.btn-link:hover {
    transform: none; /* Override .btn hover */
    color: var(--color-secondary);
}


/* Cards */
.card {
    background-color: var(--color-neutral-light);
    border-radius: var(--border-radius-large);
    padding: 25px;
    box-shadow: var(--neumorphic-shadow-convex);
    transition: transform var(--transition-duration) var(--transition-elastic), box-shadow var(--transition-duration) var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%; /* For equal height cards in a grid */
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neumorphic-shadow-hover);
}

.card-image { /* This is the container for the image */
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    margin-bottom: 20px;
    border-radius: var(--border-radius-medium);
    overflow: hidden; /* Crucial for object-fit to work with border-radius */
    display: flex; /* For centering if image is smaller, though object-fit should handle */
    align-items: center;
    justify-content: center;
    background-color: var(--color-neutral-medium); /* Placeholder bg */
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area, might crop */
    transition: transform 0.4s ease;
}
.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    flex-grow: 1; /* Allows content to take remaining space for footer buttons */
    display: flex;
    flex-direction: column;
    text-align: center; /* Center text within content area */
}
.card-content > *:last-child {
    margin-top: auto; /* Pushes last child (e.g., button) to bottom */
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--color-text-heading);
}

.card-text {
    font-size: 0.95rem;
    color: var(--color-text-subtle);
    margin-bottom: 15px;
    flex-grow: 1; /* Allow text to take space before button */
}


/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--color-neutral-light);
    margin: 10% auto;
    padding: 30px;
    border-radius: var(--border-radius-large);
    max-width: 600px;
    width: 85%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2), var(--neumorphic-shadow-convex); /* Layered shadow */
    position: relative;
    animation: modalOpen 0.4s var(--transition-elastic);
}

@keyframes modalOpen {
    from { transform: scale(0.8) translateY(50px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.close-btn {
    color: var(--color-text-subtle);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    transition: color 0.2s ease;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--color-primary);
    text-decoration: none;
    cursor: pointer;
}

.modal-content h3 {
    margin-top: 0;
    margin-bottom: 20px;
}
.modal-content ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 15px;
}
.modal-content ul li {
    margin-bottom: 8px;
}


/* Forms */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--color-text-body);
    margin-bottom: 8px;
    font-size: 0.9rem;
    position: absolute;
    top: 14px;
    left: 18px;
    transition: all 0.2s ease-out;
    pointer-events: none;
    color: var(--color-text-subtle);
    background-color: var(--color-neutral-light); /* To cover the input concave shadow */
    padding: 0 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="subject"], /* Assuming subject is text */
.form-group textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: var(--border-radius-medium);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-body);
    background-color: var(--color-neutral-light);
    border: 1px solid transparent; /* Placeholder for focus */
    box-shadow: var(--neumorphic-shadow-concave);
    transition: box-shadow var(--transition-duration) var(--transition-smooth);
}
/* Floating label effect */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 15px;
    font-size: 0.75rem;
    color: var(--color-primary);
}


.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: var(--neumorphic-shadow-concave), 0 0 0 2px var(--color-primary-alpha);
    border-color: var(--color-primary); /* Show border on focus for clarity */
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}


/* Section Specific Styles */

/* Hero Section */
.hero-section {
    /* Height is determined by content or min-height in HTML if needed, but not fixed here */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-text-light); /* Default text color for hero */
    min-height: 85vh; /* Example height */
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-content h1 { /* Already white from HTML, ensure prominence */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    margin-bottom: 20px;
}
.hero-content p { /* Already white from HTML, ensure prominence */
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}
.parallax-layer-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.3; /* Example for subtle texture */
}

/* Mission Section */
.mission-section .mission-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}
.mission-text {
    flex: 1 1 55%; /* Takes more space */
    min-width: 300px;
}
.mission-image-container {
    flex: 1 1 40%;
    min-width: 300px;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--neumorphic-shadow-convex);
}
.mission-image-container img {
    border-radius: var(--border-radius-large); /* If not already done by container */
}

/* Stats Section */
.stats-section {
    background-size: cover;
    background-position: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.stat-widget {
    background-color: var(--color-neutral-light);
    padding: 25px;
    border-radius: var(--border-radius-medium);
    text-align: center;
    box-shadow: var(--neumorphic-shadow-convex);
}
.stat-icon-placeholder {
    font-size: 0.9rem;
    color: var(--color-text-subtle);
    margin-bottom: 10px;
}
.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
}
.stat-label {
    font-weight: 600;
    color: var(--color-text-heading);
    margin-bottom: 10px;
}
.stat-description {
    font-size: 0.9rem;
    color: var(--color-text-subtle);
}


/* Workshops Section */
.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.workshop-card .card-content {
    text-align: left; /* Override default card center for more text */
}
.workshop-card .btn {
    align-self: flex-start; /* Align button to left */
    margin-top: auto;
}

/* Pricing Section */
.pricing-section {
    background-size: cover;
    background-position: center;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch; /* Make cards in a row same height */
}
.pricing-card {
    text-align: center;
    position: relative; /* For popular badge */
}
.pricing-card.popular {
    border: 2px solid var(--color-accent);
    box-shadow: 0 0 25px rgba(255, 159, 28, 0.3), var(--neumorphic-shadow-hover);
    transform: scale(1.03);
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 5px 15px;
    border-radius: var(--border-radius-small);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.pricing-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
}
.pricing-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}
.pricing-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 5px;
}
.pricing-price .period {
    font-size: 1rem;
    color: var(--color-text-subtle);
    font-weight: 400;
}
.pricing-features {
    text-align: left;
    margin-bottom: 25px;
    padding-left: 15px; /* Indent list items */
}
.pricing-features li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    position: relative;
    padding-left: 25px;
}
.pricing-features li::before {
    content: '✓'; /* Checkmark */
    color: var(--color-secondary);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}


/* Accolades Section */
.accolades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.testimonial-card {
    display: flex;
    flex-direction: column; /* Align items vertically */
    align-items: center; /* Center items horizontally */
    text-align: center;
}
.testimonial-card .card-image { /* This is the circular portrait container */
    width: 100px;
    height: 100px;
    border-radius: 50%; /* Circular image */
    margin-bottom: 20px;
    box-shadow: var(--neumorphic-shadow-convex);
}
.testimonial-card .card-image img {
    border-radius: 50%;
}
.testimonial-text {
    font-style: italic;
    color: var(--color-text-body);
    margin-bottom: 15px;
    font-size: 1rem;
}
.testimonial-author {
    font-weight: 600;
    color: var(--color-text-heading);
    font-size: 0.9rem;
}
.partner-logos .logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.partner-logos img {
    max-height: 60px; /* Control logo height */
    width: auto;
    filter: grayscale(80%);
    opacity: 0.7;
    transition: filter var(--transition-duration), opacity var(--transition-duration);
}
.partner-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Press Section */
.press-section {
    background-size: cover;
    background-position: center;
}
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.press-card .card-content {
    text-align: left;
}
.press-card .card-title a {
    color: var(--color-text-heading);
}
.press-card .card-title a:hover {
    color: var(--color-primary);
}
.press-card .btn-link {
    margin-top: auto; /* Push to bottom */
    align-self: flex-start;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    background-color: var(--color-neutral-light);
    padding: 40px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--neumorphic-shadow-convex);
}
.contact-form-container {
    flex: 1 1 55%;
    min-width: 300px;
}
.contact-info-container {
    flex: 1 1 40%;
    min-width: 300px;
}
.contact-info-container h3 {
    margin-bottom: 20px;
}
.contact-info-container p {
    margin-bottom: 15px;
    font-size: 1rem;
}
.contact-info-container strong {
    color: var(--color-text-heading);
}
.map-placeholder {
    margin-top: 20px;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--neumorphic-shadow-convex);
}
.map-placeholder img {
    border-radius: var(--border-radius-medium);
}


/* Page Specific Styles */

/* success.html */
.success-page body { /* If you add class to body */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.success-page-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}
.success-content { /* This is the .card on success page */
    max-width: 500px;
    width: 100%;
}
.success-content h1 {
    color: var(--color-secondary); /* Greenish for success */
    margin-bottom: 15px;
}

/* privacy.html, terms.html, about.html */
.page-content-wrapper { /* Add this class to the main content div of these pages */
    padding-top: 40px; /* Additional padding if main already has header padding */
    padding-bottom: 40px;
}
.page-content-wrapper .container h1 {
    margin-bottom: 30px;
    text-align: center;
}
.page-content-wrapper .container h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}
.page-content-wrapper .container p,
.page-content-wrapper .container ul li {
    line-height: 1.8;
    margin-bottom: 1em;
}
.page-content-wrapper .container ul {
    list-style: disc;
    padding-left: 20px;
}

/* Animations & Transitions */
#page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-primary);
    z-index: 9999;
    transform: translateY(100%);
}
/* Barba.js will add classes like .barba-leave-active, .barba-enter-active */
/* Example (customize as per Barba setup): */
.barba-leave-active #page-transition-overlay {
    transform: translateY(0);
    transition: transform 0.5s var(--transition-smooth);
}
.barba-enter-active #page-transition-overlay {
    transform: translateY(-100%);
    transition: transform 0.5s var(--transition-smooth) 0.3s; /* Delay enter transition */
}

[data-aos] {
    transition-property: transform, opacity;
    /* Default AOS transition can be overridden in JS init if needed */
}


/* Cookie Consent Popup */
#cookieConsentPopup {
    /* Styles are in HTML for this specific component as requested */
    /* Ensure button within it looks consistent or uses .btn */
}
#acceptCookieConsent { /* If not using .btn class in HTML */
    font-family: var(--font-heading);
    font-weight: 600;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: var(--border-radius-small);
    transition: background-color var(--transition-duration);
}
#acceptCookieConsent:hover {
    background-color: var(--color-secondary);
}


/* Responsive Design */
@media (max-width: 992px) { /* Tablet and smaller */
    .main-navigation .nav-list {
        display: none; /* Hidden, JS toggles .active */
        position: absolute;
        top: calc(var(--header-height) - 1px); /* Align just below header */
        left: 0;
        right: 0;
        background-color: var(--color-neutral-light-transparent-strong);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 10px 0;
        border-top: 1px solid var(--color-neutral-medium);
    }
    .main-navigation .nav-list.active {
        display: flex;
    }
    .main-navigation .nav-list li {
        width: 100%;
        text-align: center;
        margin-left: 0;
    }
    .main-navigation .nav-list li a {
        padding: 15px 20px;
        display: block;
        width: 100%;
        border-bottom: 1px solid var(--color-neutral-medium);
    }
    .main-navigation .nav-list li:last-child a {
        border-bottom: none;
    }
    .main-navigation .nav-list li a::after { /* Mobile nav link underline */
        bottom: 10px; /* Adjust for padding */
        height: 2px;
    }

    .menu-toggle {
        display: flex; /* Show hamburger icon */
        align-items: center;
        justify-content: center;
    }

    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.1rem; }

    .mission-content {
        flex-direction: column;
    }
    .contact-wrapper {
        flex-direction: column;
        padding: 25px;
    }
}

@media (max-width: 768px) { /* Mobile */
    .section-padding {
        padding: 60px 0;
    }
    .container {
        width: 95%;
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }

    .pricing-grid, .workshops-grid, .press-grid, .stats-grid, .accolades-grid {
        grid-template-columns: 1fr; /* Stack cards */
    }
    .pricing-card.popular {
        transform: scale(1); /* Reset popular scale on mobile if it causes layout issues */
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column {
        margin-bottom: 20px;
    }
    .footer-social-links {
        text-align: center;
    }
    .footer-social-links li {
        margin: 0 8px 10px;
    }
}