/* -------------------------------------------------------------------------- */
/*                                  VARIABLES                                 */
/* -------------------------------------------------------------------------- */
:root {
    --primary-color: #00AEEF; /* Bright Blue */
    --primary-color-darker: #008cbf;
    --secondary-color: #FF6B6B; /* Bright Coral */
    --accent-color-1: #FFD166; /* Bright Yellow */
    --accent-color-2: #06D6A0; /* Bright Teal/Green */

    --text-color-dark: #212529; /* Very Dark Gray - almost black for high contrast */
    --text-color-medium: #495057; /* Medium Gray */
    --text-color-light: #FFFFFF;
    --text-on-primary: #FFFFFF;
    --text-on-secondary: #FFFFFF;

    --background-color: #FFFFFF;
    --alt-background-color: #F8F9FA; /* Light Gray for section alternation */
    --card-background-color: #FFFFFF;
    
    --border-color: #DEE2E6;
    --border-radius-sm: 0.25rem; /* 4px */
    --border-radius-md: 0.5rem;  /* 8px */
    --border-radius-lg: 0.75rem; /* 12px */

    --font-family-headings: 'Space Grotesk', sans-serif;
    --font-family-base: 'DM Sans', sans-serif;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.075);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);

    --header-height: 80px; /* Approximate header height */
    --footer-height: auto; /* Approximate footer height */

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

/* -------------------------------------------------------------------------- */
/*                                 GLOBAL RESETS & DEFAULTS                  */
/* -------------------------------------------------------------------------- */
*,
*::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-family-base);
    color: var(--text-color-dark);
    background-color: var(--background-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

/* -------------------------------------------------------------------------- */
/*                                 TYPOGRAPHY                                 */
/* -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headings);
    color: var(--text-color-dark); /* Ensure high contrast for headings */
    margin-bottom: 0.75em;
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1); /* Subtle shadow for depth */
}

h1 { font-size: 2.8rem; } /* ~44.8px */
h2 { font-size: 2.2rem; } /* ~35.2px */
h3 { font-size: 1.8rem; } /* ~28.8px */
h4 { font-size: 1.4rem; } /* ~22.4px */

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

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

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

/* -------------------------------------------------------------------------- */
/*                                 LAYOUT & CONTAINERS                        */
/* -------------------------------------------------------------------------- */
.container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

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

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

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem; /* Slightly larger for section titles */
    color: #222222; /* Ensure dark color for titles as requested */
    position: relative;
    padding-bottom: 0.5rem;
}
.section-title::after { /* Subtle underline effect */
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

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

/* Columns - Basic Flexbox Grid */
.columns {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.column {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px; /* Space between columns on mobile */
    flex-basis: 100%; /* Default to full width */
}

@media (min-width: 768px) {
    .column {
        flex: 1; /* Equal width columns */
    }
    .column.is-two-thirds {
        flex: 0 0 66.6666%;
        max-width: 66.6666%;
    }
    .column.is-one-third {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

/* -------------------------------------------------------------------------- */
/*                                 HEADER & NAVIGATION                        */
/* -------------------------------------------------------------------------- */
.site-header {
    background-color: var(--background-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    height: var(--header-height);
}

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

.navbar-brand {
    font-family: var(--font-family-headings);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}
.navbar-brand:hover {
    color: var(--primary-color-darker);
}

.navbar-nav {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navbar-nav li {
    margin-left: 1.5rem;
}

.navbar-nav a {
    color: var(--text-color-dark);
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) var(--transition-timing);
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
    width: 100%;
}

.navbar-toggler {
    display: none; /* Hidden by default */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color-dark);
    margin: 5px 0;
    border-radius: 3px;
    transition: all var(--transition-speed) var(--transition-timing);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .navbar-menu {
        display: none; /* Hidden by default on mobile */
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--background-color);
        box-shadow: var(--shadow-md);
        padding: 1rem 0;
        flex-direction: column;
        align-items: center;
    }

    .navbar-menu.is-active {
        display: flex; /* Show when active */
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    .navbar-nav li {
        margin: 0.75rem 0;
        width: 100%;
        text-align: center;
    }

    .navbar-nav a {
        padding: 0.75rem 1rem;
        display: block;
        width: 100%;
    }
    
    .navbar-toggler {
        display: block; /* Show burger on mobile */
    }

    /* Burger icon animation */
    .navbar-toggler.is-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .navbar-toggler.is-active span:nth-child(2) {
        opacity: 0;
    }
    .navbar-toggler.is-active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* -------------------------------------------------------------------------- */
/*                                 HERO SECTION                               */
/* -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    color: var(--text-color-light);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0; /* Adjusted padding */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden; /* For curved divider */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)); /* Darker overlay for better text readability */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem; /* Larger for hero */
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color-light); /* Explicitly white */
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--text-color-light); /* Explicitly white */
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

/* Stats Widgets in Hero */
.stats-widgets-hero {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.stat-widget {
    text-align: center;
    padding: 1rem;
    min-width: 150px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-color-1);
    margin-bottom: 0.25rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.curved-divider-bottom {
    position: absolute;
    bottom: -1px; /* To overlap slightly and avoid gaps */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.curved-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px; /* Adjust height of the curve */
}

.curved-divider-bottom path {
    fill: var(--background-color); /* Match the next section's background */
}

/* -------------------------------------------------------------------------- */
/*                                 BUTTONS (GLOBAL)                           */
/* -------------------------------------------------------------------------- */
.btn, button, input[type="submit"], input[type="button"] {
    display: inline-block;
    font-family: var(--font-family-headings);
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 2px solid transparent;
    padding: 0.75rem 1.5rem; /* Standard padding */
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--border-radius-md); /* Modern rounded corners */
    transition: all var(--transition-speed) var(--transition-timing);
    text-decoration: none; /* Remove underline from <a> styled as buttons */
}
.btn:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    text-decoration: none;
}

.btn-primary {
    color: var(--text-on-primary);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
    background-color: var(--primary-color-darker);
    border-color: var(--primary-color-darker);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    color: var(--text-on-secondary);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
    background-color: #E55A5A; /* Darker coral */
    border-color: #E55A5A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 0.9rem 2rem;
    font-size: 1.15rem;
}

/* -------------------------------------------------------------------------- */
/*                                 CARDS (GLOBAL)                             */
/* -------------------------------------------------------------------------- */
.card {
    background-color: var(--card-background-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    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%; /* Make cards in a row equal height */
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-image { /* Container for the image */
    width: 100%;
    overflow: hidden;
    display: flex; /* For centering image */
    justify-content: center; /* For centering image */
    align-items: center; /* For centering image */
    background-color: #f0f0f0; /* Placeholder bg */
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the area, might crop */
    display: block;
    transition: transform var(--transition-speed) var(--transition-timing);
}
.card:hover .card-image img {
    transform: scale(1.05);
}

/* Specific height for card images in certain contexts */
.award-card .card-image, .press-card .card-image {
    height: 200px; /* Fixed height for these card images */
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1; /* Allows content to take remaining space */
    display: flex;
    flex-direction: column;
    text-align: center; /* Center text content in cards */
}
.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}
.card-content p {
    font-size: 0.95rem;
    color: var(--text-color-medium);
    margin-bottom: 1rem;
    flex-grow: 1;
}
.card-content a.read-more-link {
    margin-top: auto; /* Pushes link to bottom if content is short */
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    display: inline-block; /* Allow some padding/margin */
    padding: 0.25rem 0;
}
.card-content a.read-more-link:hover {
    text-decoration: underline;
    color: var(--primary-color-darker);
}

/* -------------------------------------------------------------------------- */
/*                                MISSION SECTION                              */
/* -------------------------------------------------------------------------- */
.mission-section .image-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.mission-section .image-container img {
    display: block;
    width: 100%;
    height: auto;
}
.modern-shadow { /* Utility class for a more pronounced shadow, can be used on image containers */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-lg);
}

/* -------------------------------------------------------------------------- */
/*                                 AWARDS SECTION                             */
/* -------------------------------------------------------------------------- */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* -------------------------------------------------------------------------- */
/*                              TESTIMONIALS SECTION                          */
/* -------------------------------------------------------------------------- */
.testimonial-carousel {
    display: grid; /* Simple grid for now, JS can make it a carousel */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.testimonial-card .card-image { /* Avatar container */
    width: 100px; /* Fixed size for avatar */
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem auto; /* Center avatar */
    border: 3px solid var(--primary-color);
}
.testimonial-card .card-image img.testimonial-avatar {
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-card .card-content {
    padding-top: 0; /* Adjust padding as avatar is above */
}
.testimonial-card h4 {
    font-size: 1.1rem;
    color: var(--text-color-dark);
    margin-top: 1rem;
    font-weight: 600;
}
.testimonial-card p {
    font-style: italic;
    color: var(--text-color-medium);
}

/* -------------------------------------------------------------------------- */
/*                      EVENTS CALENDAR (ACCORDION) SECTION                   */
/* -------------------------------------------------------------------------- */
.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}
.accordion-item {
    background-color: var(--card-background-color);
    margin-bottom: 1rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.accordion-header {
    background-color: transparent; /* Header matches item background */
    color: var(--text-color-dark);
    cursor: pointer;
    padding: 1rem 1.5rem;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-speed) var(--transition-timing);
}
.accordion-header:hover {
    background-color: rgba(0,0,0,0.03);
}
.accordion-header.active {
    background-color: var(--primary-color);
    color: var(--text-on-primary);
}
.accordion-icon {
    font-size: 1.5rem;
    transition: transform var(--transition-speed) var(--transition-timing);
}
.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
}
.accordion-content {
    padding: 0 1.5rem;
    background-color: var(--card-background-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease-out, padding var(--transition-speed) ease-out;
}
.accordion-content p {
    margin-bottom: 1rem;
    padding: 1rem 0;
}
.accordion-item.active .accordion-content {
    /* max-height will be set by JS */
    padding: 1rem 1.5rem;
}

/* -------------------------------------------------------------------------- */
/*                              PROGRESS INDICATORS                           */
/* -------------------------------------------------------------------------- */
.progress-indicator-container {
    margin-top: 1.5rem;
}
.progress-indicator-container p {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color-dark);
}
.progress-bar {
    width: 100%;
    background-color: #e9ecef;
    border-radius: var(--border-radius-sm);
    height: 20px; /* Make it a bit thicker */
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}
.progress-bar-fill {
    height: 100%;
    background-color: var(--accent-color-2); /* Default fill color */
    color: var(--text-color-light);
    text-align: center;
    line-height: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm); /* Rounded only on the left if not full */
    transition: width 1s ease-in-out;
    white-space: nowrap; /* Prevent text wrapping */
    padding: 0 5px; /* Padding for text inside */
}
.progress-bar-fill[style*="100%"] {
    border-radius: var(--border-radius-sm); /* Fully rounded when 100% */
}

/* -------------------------------------------------------------------------- */
/*                               RESEARCH SECTION                             */
/* -------------------------------------------------------------------------- */
.research-section .image-container img {
    border-radius: var(--border-radius-lg);
    display: block;
    width: 100%;
    height: auto;
}

/* -------------------------------------------------------------------------- */
/*                                 PRESS SECTION                              */
/* -------------------------------------------------------------------------- */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* -------------------------------------------------------------------------- */
/*                             EXTERNAL LINKS SECTION                         */
/* -------------------------------------------------------------------------- */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.link-card {
    background-color: var(--alt-background-color); /* Slightly different background for link cards */
    border-left: 5px solid var(--accent-color-1);
}
.link-card .card-content {
    text-align: left; /* Links usually better left-aligned */
}
.link-card h3 a {
    color: var(--primary-color);
    font-size: 1.25rem;
}
.link-card h3 a:hover {
    color: var(--primary-color-darker);
}
.link-card p {
    font-size: 0.9rem;
    color: var(--text-color-medium);
}

/* -------------------------------------------------------------------------- */
/*                                CONTACT SECTION                             */
/* -------------------------------------------------------------------------- */
.contact-form-container {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    padding: 2rem;
    background-color: var(--card-background-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color-dark);
}
.form-group label.checkbox-label {
    font-weight: normal;
    display: inline; /* For checkbox */
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    font-family: var(--font-family-base);
    color: var(--text-color-dark);
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    transition: border-color var(--transition-speed) var(--transition-timing), box-shadow var(--transition-speed) var(--transition-timing);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 174, 239, 0.25); /* Focus ring */
}
textarea {
    min-height: 120px;
    resize: vertical;
}

input[type="checkbox"] {
    accent-color: var(--primary-color); /* Modern way to color checkboxes */
    width: 1.1em;
    height: 1.1em;
    vertical-align: middle;
}

.contact-details {
    text-align: center;
    margin-top: 2rem;
}
.contact-details h3 {
    margin-bottom: 1rem;
}
.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.contact-details strong {
    color: var(--text-color-dark);
}

/* -------------------------------------------------------------------------- */
/*                                   FOOTER                                   */
/* -------------------------------------------------------------------------- */
.site-footer {
    background-color: #2C3E50; /* Darker, contrasting footer */
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1.5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1.3rem;
    color: var(--text-color-light);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-column h4::after { /* Underline for footer titles */
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 0.25rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}
.footer-column ul a:hover {
    color: var(--text-color-light);
    text-decoration: underline;
}

.social-links li a { /* Text-based social links */
    display: inline-block;
    padding: 0.2rem 0;
    font-weight: 500;
}
/* No icons, just text links as per requirement */

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}
.footer-bottom p {
    margin-bottom: 0;
}

/* -------------------------------------------------------------------------- */
/*                             PAGE SPECIFIC STYLES                           */
/* -------------------------------------------------------------------------- */

/* For success.html */
.success-page-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--header-height) - var(--footer-height)); /* Adjust for header/footer if they exist on this page */
    text-align: center;
    padding: 2rem;
}
.success-page-container h1 {
    color: var(--accent-color-2);
    font-size: 3rem;
}
.success-page-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* For privacy.html and terms.html */
.privacy-page-container,
.terms-page-container {
    padding-top: calc(var(--header-height) + 40px); /* Header height + extra space */
    padding-bottom: 40px;
}
.privacy-page-container .container h1,
.terms-page-container .container h1 {
    margin-bottom: 2rem;
}
.privacy-page-container .container h2,
.terms-page-container .container h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: var(--primary-color);
}
.privacy-page-container .container p,
.terms-page-container .container p,
.privacy-page-container .container ul li,
.terms-page-container .container ul li {
    color: var(--text-color-dark); /* Ensure good readability on content pages */
}
.privacy-page-container .container ul,
.terms-page-container .container ul {
    list-style-position: inside;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
    .section-padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .hero-section {
        padding: 80px 0;
    }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .stats-widgets-hero {
        flex-direction: column;
        gap: 1.5rem;
    }
    .stat-widget {
        min-width: auto;
    }
    .columns {
        margin-left: 0;
        margin-right: 0;
    }
    .column {
        padding-left: 0;
        padding-right: 0;
        flex-basis: 100% !important; /* Force full width on mobile */
        max-width: 100% !important;
    }
    .footer-grid {
        grid-template-columns: 1fr; /* Stack footer columns */
        text-align: center;
    }
    .footer-column h4::after {
        margin-left: auto;
        margin-right: auto;
    }
    .contact-form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    html { font-size: 15px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 1.8rem; }
    .btn-lg {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
    .card-content {
        padding: 1rem;
    }
    .contact-form-container {
        margin-left: -15px; /* Counteract container padding for full-width feel */
        margin-right: -15px;
        border-radius: 0;
    }
}

/* -------------------------------------------------------------------------- */
/*                            AOS Animation Overrides (Optional)              */
/* -------------------------------------------------------------------------- */
[data-aos="fade-up"] {
    transition-property: transform, opacity;
}
/* Add more specific AOS overrides if needed */


/* -------------------------------------------------------------------------- */
/*                            Hand-drawn animation style attempts (Subtle)    */
/* -------------------------------------------------------------------------- */
/* For buttons on hover - slight "wiggle" or border effect */
.btn:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    /* Could add a ::before/::after pseudo-element animation for a sketchy border */
    /* For simplicity, relying on transform and box-shadow for now */
}

/* For cards on hover - slight skew or rotation */
/*
.card:hover {
    transform: translateY(-5px) rotate(1deg);
}
*/
/* Note: "Hand-drawn" animations are best achieved with SVG and JS (like RoughJS or similar concepts).
   CSS can only provide subtle hints towards this style.
*/

/* -------------------------------------------------------------------------- */
/*                            Parallax Effect (Placeholder for JS)             */
/* -------------------------------------------------------------------------- */
/*
.parallax-background {
    background-attachment: fixed; // Simple CSS parallax, but often has performance issues on mobile
    // JS-based parallax is generally preferred for better control and performance
}
*/

/* -------------------------------------------------------------------------- */
/*                            Glassmorphism Effect (Example)                  */
/* -------------------------------------------------------------------------- */
/*
.glassmorphic-element {
    background: rgba(255, 255, 255, 0.15); // Semi-transparent background
    backdrop-filter: blur(10px); // The blur effect
    -webkit-backdrop-filter: blur(10px); // For Safari
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2); // Subtle border
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1); // Softer shadow
}
*/

/* -------------------------------------------------------------------------- */
/*                               COOKIE POPUP STYLES (minimal)                */
/* -------------------------------------------------------------------------- */
/* Styles are mostly inline in HTML for this specific request,
   but if moved to CSS file, they would look like this: */
/*
#cookie-consent-popup {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.85);
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 9999;
    font-family: 'DM Sans', sans-serif;
}
#cookie-consent-popup p {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #fff;
}
#cookie-consent-popup a {
    color: #00bcd4;
    text-decoration: underline;
}
#accept-cookie {
    background-color: #00bcd4;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}
*/

html,body{
    overflow-x: hidden;
}