/* style.css */

/* CSS Variables */
:root {
    --font-primary: 'Oswald', sans-serif;
    --font-secondary: 'Nunito', sans-serif;

    --color-primary: #A0D2DB; /* Pastel Blue/Teal */
    --color-primary-dark: #7FA9B0;
    --color-primary-rgb: 160, 210, 219;

    --color-secondary: #FFE0B2; /* Pastel Peach/Orange */
    --color-accent: #E6A4B4; /* Pastel Pink/Mauve */
    --color-accent-dark: #D18A9B;
    --color-accent-rgb: 230, 164, 180; /* For hero overlay */

    --color-text: #3D405B; /* Dark Slate Blue */
    --color-text-strong: #2C2E43; /* Even darker for titles */
    --color-text-subtle: #6B7280; /* Greyish blue for less emphasis */
    --color-text-light: #FFFFFF;

    --color-background-body: #FCF8F3; /* Very light beige/cream for overall page */
    --color-background-light: #FFFFFF; /* White for general sections */
    --color-background-light-alt: #F7EDE2; /* Slightly darker beige for contrast sections */
    --color-card-background: #FFFFFF;
    
    --color-border: #D1D5DB; /* Light Grey */
    --color-border-input-focus-rgb: 160, 210, 219; /* Same as primary for consistency */

    --gradient-pastel: linear-gradient(135deg, var(--color-primary), var(--color-secondary));

    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 6px 20px rgba(0, 0, 0, 0.12);
    --shadow-input: inset 0 1px 3px rgba(0,0,0,0.06);

    --border-radius-smooth: 15px;
    --border-radius-biomorphic: 25px; /* More pronounced biomorphic curves */
    --border-radius-small: 8px;

    --container-width: 1140px;
    --header-height: 70px;
    --transition-fast: 0.2s ease-out;
    --transition-default: 0.3s ease-in-out;
}

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

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

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    background-color: var(--color-background-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--color-text-strong);
    margin-bottom: 0.75em;
    line-height: 1.2;
    font-weight: 700; /* Oswald is often thinner by default */
}

h1 { font-size: 3rem; } /* Hero title is styled separately */
h2.section-title { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1em;
    color: var(--color-text-subtle);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-default);
}

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

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

/* Layout */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.section-padding {
    padding-top: 70px;
    padding-bottom: 70px;
}

.bg-light-pastel {
    background-color: var(--color-background-light-alt);
}

/* Helper Classes */
.section-title {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    color: var(--color-text-strong);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background-color: var(--color-primary);
    border-radius: var(--border-radius-small);
}

.section-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
    font-size: 1.05rem; /* Slightly larger than base p */
    color: var(--color-text-subtle);
}


/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: var(--shadow-soft);
    height: var(--header-height);
    transition: background-color var(--transition-default), box-shadow var(--transition-default);
}

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

.logo {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}
.logo-fr {
    color: var(--color-accent);
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
}

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

.main-nav .nav-list a {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--color-text);
    padding: 10px 0;
    position: relative;
    text-decoration: none;
}

.main-nav .nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px; /* Position underline slightly below text */
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-default);
}

.main-nav .nav-list a:hover,
.main-nav .nav-list a.active-link { /* Add .active-link class via JS if needed */
    color: var(--color-primary);
}
.main-nav .nav-list a:hover::after,
.main-nav .nav-list a.active-link::after {
    width: 100%;
}

.nav-toggle {
    display: none; /* Hidden by default, shown on mobile */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001; /* Above nav-list when it's fixed */
}

.hamburger {
    display: block;
    position: relative;
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    border-radius: 3px;
    transition: background-color var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 25px;
    height: 3px;
    background-color: var(--color-text);
    border-radius: 3px;
    transition: transform var(--transition-default), top var(--transition-default);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background-color: transparent; /* Middle bar disappears */
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}


/* Buttons (Global) */
.btn, button[type="submit"], input[type="submit"] { /* Added input[type="submit"] for consistency */
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--border-radius-biomorphic);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-default);
    border: 2px solid transparent;
    text-align: center;
    line-height: 1.5; /* Ensure text is vertically centered */
}

.btn-primary,
button[type="submit"], /* Default contact form button */
input[type="submit"] {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    border-color: var(--color-primary);
}

.btn-primary:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
    transform: translateY(-3px) scale(1.02);
}

/* Hero Section */
#hero {
    position: relative;
    color: var(--color-text-light);
    text-align: center;
    overflow: hidden;
    padding-top: calc(var(--header-height) + 80px); /* Space for fixed header + extra */
    padding-bottom: 80px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(var(--color-primary-rgb), 0.6), rgba(var(--color-accent-rgb), 0.5));
    z-index: 1;
}

#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Behind overlay and content */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem; /* Adjusted for responsiveness */
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--color-text-light); /* STROGO: text is WHITE */
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.25rem; /* Adjusted */
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text-light); /* STROGO: text is WHITE */
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
    line-height: 1.7;
}

/* Cards General Styling */
.card {
    background-color: var(--color-card-background);
    border-radius: var(--border-radius-biomorphic);
    box-shadow: var(--shadow-soft);
    overflow: hidden; /* Important for image corners */
    transition: transform var(--transition-default), box-shadow var(--transition-default);
    display: flex;
    flex-direction: column;
    /* align-items: center; /* STROGO: Centers .card-image and .card-content blocks IF they are not 100% width. For full width content within card, this is not needed. */
    text-align: left; /* Default for card content, override for specific cards if needed */
}
/* STROGO: If card content itself needs centering (e.g. team cards), do it specifically or use text-align:center on the card. */
/* The request for "align-items: center for centering images" is complex.
   If the card's children (.card-image, .card-content) are meant to be centered, then add `align-items: center;` to .card.
   If images within .card-image need centering, use `margin: 0 auto; display: block;` on img, or flex on .card-image.
   The current structure with .card-image width 100% and object-fit:cover is generally good.
   For specific avatar images, margin:auto on img works.
*/

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

.card-image { /* This is the 'image-container' */
    width: 100%; /* Takes full width of card */
    overflow: hidden; /* Crucial for image scaling */
    position: relative; /* For potential overlays on images */
    /* STROGO: Fixed height on .card-image for rectangular cover images */
}

.card-image img {
    display: block;
    width: 100%;
    height: 100%; /* Will be controlled by fixed height on .card-image or aspect ratio */
    object-fit: cover; /* STROGO: object-fit: cover */
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth zoom */
}

.card:hover .card-image img {
    transform: scale(1.08);
}

.card-content {
    padding: 25px;
    flex-grow: 1; /* Allows content to fill space if card has fixed height */
    display: flex;
    flex-direction: column;
}

.card-content .card-title { /* This targets h3 inside card-content */
    font-family: var(--font-primary);
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--color-text-strong);
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--color-text-subtle);
    flex-grow: 1; /* Pushes button to bottom if card-content is flex */
}
.card-content .btn {
    margin-top: auto; /* Pushes button to the bottom */
    align-self: flex-start; /* Align button to the left in card */
}


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

/* Methodology Section */
.methodology-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.step {
    text-align: center; /* STROGO: Centering content */
    padding: 25px 20px;
    background-color: var(--color-card-background);
    border-radius: var(--border-radius-smooth);
    box-shadow: var(--shadow-soft);
}
.step-icon img {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px auto; /* STROGO: Centering image */
    object-fit: contain;
}
.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-text-strong);
}

/* Statistics Section */
#statistics {
    color: var(--color-text-light);
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
}
.statistics-overlay { /* VAZHNO: Darkened background for text on image */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-primary-rgb), 0.7);
    z-index: 1;
}
#statistics .container {
    position: relative;
    z-index: 2;
}
#statistics .section-title, #statistics .section-intro {
    color: var(--color-text-light);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Ensuring readability */
}
#statistics .section-title::after {
    background-color: var(--color-text-light);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.stat-item { /* STROGO: Centering content */
    padding: 20px;
    text-align: center;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-primary);
    display: block;
    margin-bottom: 5px;
    color: var(--color-text-light);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
.stat-label {
    font-size: 1rem;
    color: var(--color-text-light);
    opacity: 0.9;
}

/* Webinars Section */
.webinars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.webinar-card .card-image {
    height: 200px; /* STROGO: Fixed height for card image container */
}
.webinar-card .card-content p strong {
    color: var(--color-text);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.team-member-card { /* STROGO: Card with display:flex, flex-direction:column, align-items:center */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; /* Ensures text inside card-content is centered */
}
.team-member-card .card-image { /* This is the image container */
    height: auto; /* Let image define height within its centered block */
    padding-top: 20px; /* Space for circular image */
    /* .card-image itself will be centered by align-items:center on .team-member-card */
}
.team-member-card .card-image img { /* STROGO: image centered with margin auto */
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px auto; /* Centered with bottom margin */
    border: 4px solid var(--color-background-light-alt); /* Subtle border */
    box-shadow: var(--shadow-soft);
    display: block;
}
.team-member-card .card:hover .card-image img {
    transform: scale(1.05);
}
.team-member-name {
    font-size: 1.4rem;
    color: var(--color-text-strong);
    margin-bottom: 5px;
}
.team-member-role {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Accolades Section (Testimonials) */
.accolades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.testimonial-card { /* STROGO: Card with display:flex, flex-direction:column, align-items:center */
    background-color: var(--color-background-light-alt); /* Different bg for testimonials */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.testimonial-card .card-image {
    padding-top: 20px;
}
.testimonial-card .card-image img { /* STROGO: image centered with margin auto */
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px auto;
    border: 3px solid var(--color-card-background);
    display: block;
}
.testimonial-card .card-content p {
    font-style: italic;
    color: var(--color-text); /* More prominent text */
    margin-bottom: 15px;
    font-size: 1rem;
}
.testimonial-card cite {
    display: block;
    margin-top: 10px;
    font-weight: 700;
    font-style: normal;
    color: var(--color-primary-dark);
}
.partner-logos {
    margin-top: 60px;
    text-align: center;
}
.subsection-title { /* For "Reconnus par" */
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--color-text-strong);
    font-family: var(--font-primary);
}
.logos-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}
.logos-gallery img {
    max-height: 55px;
    width: auto;
    opacity: 0.65;
    transition: opacity var(--transition-default);
}
.logos-gallery img:hover {
    opacity: 1;
}

/* Behind the Scenes Section */
.gallery-container {
    margin-top: 30px;
    margin-bottom: 30px;
}
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.gallery-item { /* This is like a card */
    text-align: center; /* STROGO: Centering content */
    background-color: var(--color-card-background);
    border-radius: var(--border-radius-smooth);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform var(--transition-default), box-shadow var(--transition-default);
    /* display: flex; flex-direction: column; align-items: center; /* Optional for stricter centering of blocks */
}
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}
.gallery-item img { /* Assuming img is direct child or inside a .card-image like structure */
    width: 100%;
    height: 220px; /* STROGO: Fixed height for image container equivalent */
    object-fit: cover;
    display: block;
    /* margin: 0 auto; /* If not full width and needs centering */
}
.gallery-item p {
    padding: 15px;
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: 0;
}


/* External Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.resource-card .card-title a {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1.3rem;
}
.resource-card .card-title a:hover {
    text-decoration: underline;
    color: var(--color-primary-dark);
}
.resource-card .card-content {
    justify-content: flex-start;
}
.resource-card p {
    font-size: 0.9rem;
}


/* Contact Section */
.contact-form {
    max-width: 700px;
    margin: 40px auto 0 auto;
    background-color: var(--color-card-background);
    padding: 30px;
    border-radius: var(--border-radius-biomorphic);
    box-shadow: var(--shadow-strong);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--color-text);
    font-size: 0.9rem;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[name="subject"], /* More specific if needed */
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-small);
    font-family: var(--font-secondary);
    font-size: 1rem;
    background-color: var(--color-background-body); /* Light background for inputs */
    transition: border-color var(--transition-default), box-shadow var(--transition-default);
    box-shadow: var(--shadow-input);
    color: var(--color-text);
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[name="subject"]:focus,
.contact-form textarea:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(var(--color-border-input-focus-rgb), 0.25), var(--shadow-input);
}
.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}
.contact-form button[type="submit"] {
    width: 100%;
    padding: 15px 28px; /* Larger padding for main submit */
    font-size: 1.1rem;
}
.contact-info-alternative {
    text-align: center;
    margin-top: 25px;
    font-size: 0.9rem;
}


/* Footer */
.site-footer {
    background-color: var(--color-text-strong);
    color: #B0B0B0; /* Lighter grey for footer text */
    padding-top: 60px;
    font-size: 0.95rem;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}
.footer-column h4 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.footer-column p,
.footer-column ul li a {
    color: #B0B0B0; /* Consistent link and p color */
    line-height: 1.8;
}
.footer-column ul {
    list-style: none;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul li a:hover {
    color: var(--color-text-light);
    text-decoration: underline;
}
.social-links-text li a { /* VAZHNO: Text links for social media */
    color: var(--color-primary); 
    font-weight: bold;
}
.social-links-text li a:hover {
    color: var(--color-text-light);
}
.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid #4E527A; /* Darker border within footer */
    font-size: 0.9rem;
    color: #868AAE; /* Subtler color for copyright */
}

/* Privacy & Terms Pages Specific Styling */
/* VAZHNO: Add class="privacy-page" or "terms-page" to body tag of respective pages */
body.privacy-page main,
body.terms-page main {
    padding-top: calc(var(--header-height) + 50px); /* VAZHNO: Ensure content not overlapped by header */
    padding-bottom: 50px;
    background-color: var(--color-background-light-alt);
}
.legal-content-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--color-background-light);
    padding: 30px 40px;
    border-radius: var(--border-radius-smooth);
    box-shadow: var(--shadow-soft);
}
.legal-content-container h1 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--color-primary);
    text-align: center;
}
.legal-content-container h2 {
    font-size: 1.6rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--color-text-strong);
    border-bottom: 2px solid var(--color-primary-light, #E0F2F7); /* Light underline for H2 */
    padding-bottom: 5px;
}
.legal-content-container p,
.legal-content-container ul li {
    line-height: 1.75;
    margin-bottom: 15px;
    color: var(--color-text-subtle);
}
.legal-content-container ul {
    list-style-position: inside;
    padding-left: 0; 
}
.legal-content-container ul li {
    /* Indent list items using padding if list-style-position is outside or default */
     padding-left: 20px; /* Indent list items */
     position: relative;
}
.legal-content-container ul li::before { /* Custom bullet for better control if needed */
    /* content: "•";
    color: var(--color-primary);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 5px; */
}


/* Success Page Styling */
/* VAZHNO: Add class="success-page" to body tag of success.html */
body.success-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* VAZHNO: Full viewport height */
    background-color: var(--color-background-body);
}
.success-page main {
    flex-grow: 1;
    display: flex; /* VAZHNO: Centering content */
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.success-container {
    text-align: center;
    padding: 40px 50px;
    background-color: var(--color-background-light);
    border-radius: var(--border-radius-biomorphic);
    box-shadow: var(--shadow-strong);
    max-width: 600px;
    width: 100%;
}
.success-container .icon-success {
    font-size: 4rem; /* Example if you add an icon font or SVG */
    color: var(--color-primary);
    margin-bottom: 20px;
}
.success-container h1 {
    color: var(--color-primary);
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.success-container p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--color-text);
}
.success-container .btn {
    min-width: 200px;
}


/* Cookie Popup (Minimal CSS is in HTML, can be enhanced here) */
/* #cookie-popup { ... } */


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

    .services-grid,
    .webinars-grid,
    .team-grid,
    .accolades-grid,
    .resources-grid,
    .image-gallery,
    .methodology-steps,
    .stats-grid,
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px; /* Smaller header on mobile */
    }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.05rem; }
    #hero { padding-top: calc(var(--header-height) + 60px); padding-bottom: 60px; }
    
    .section-padding { padding-top: 50px; padding-bottom: 50px; }
    .section-intro { margin-bottom: 30px; font-size: 1rem; }
    h2.section-title { font-size: 2rem; }

    /* Mobile Navigation */
    .nav-toggle {
        display: block; /* Show burger icon */
    }
    .main-nav .nav-list {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-background-light);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(-100%);
        transition: transform var(--transition-default);
        padding-top: 20px;
        box-shadow: var(--shadow-strong);
        overflow-y: auto;
    }
    .main-nav .nav-list.active {
        transform: translateX(0);
    }
    .main-nav .nav-list li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    .main-nav .nav-list a {
        display: block;
        padding: 18px 20px;
        font-size: 1.2rem;
        width: 100%;
        border-bottom: 1px solid var(--color-border);
    }
    .main-nav .nav-list li:last-child a {
        border-bottom: none;
    }
    .main-nav .nav-list a::after {
        display: none;
    }
    .contact-form { padding: 20px; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-column h4 { margin-top: 20px; }
    .footer-column:first-child h4 { margin-top: 0; }
    .footer-column ul { margin-bottom: 20px; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.95rem; max-width: 90%; }
    h2.section-title { font-size: 1.8rem; }

    .services-grid,
    .webinars-grid,
    .team-grid,
    .accolades-grid,
    .resources-grid,
    .image-gallery,
    .methodology-steps,
    .stats-grid {
        grid-template-columns: 1fr; /* Single column */
        gap: 20px;
    }
    .card-content { padding: 20px; }
    .legal-content-container { padding: 20px; }
    .success-container { padding: 30px 20px; }
}

/* ScrollReveal initial states (can be customized further with JS) */
[data-sr-id] { /* Targets elements initialized by ScrollReveal */
    visibility: hidden;
}