/* Variables */
:root {
    /* Triadic color scheme */
    --primary: #4e57d4;
    --primary-dark: #3a42b9;
    --primary-light: #7a81e8;
    
    --secondary: #d44e57;
    --secondary-dark: #b93a42;
    --secondary-light: #e87a81;
    
    --tertiary: #57d44e;
    --tertiary-dark: #42b93a;
    --tertiary-light: #81e87a;
    
    /* Neutral colors */
    --dark: #222222;
    --medium-dark: #444444;
    --medium: #777777;
    --light-medium: #aaaaaa;
    --light: #eeeeee;
    --white: #ffffff;
    
    /* UI elements */
    --background: #f8f9fa;
    --card-bg: #ffffff;
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--primary), var(--primary-dark));
    --secondary-gradient: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    --tertiary-gradient: linear-gradient(135deg, var(--tertiary), var(--tertiary-dark));
    
    /* Typography */
    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Work Sans', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-round: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--background);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-sm);
    color: var(--medium-dark);
}

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

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

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: var(--space-sm);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Section Styles */
section {
    padding: var(--space-lg) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: var(--space-md);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary);
    transition: width var(--transition-medium);
}

.section-header:hover h2::after {
    width: 100px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--medium);
    max-width: 700px;
    margin: 0 auto var(--space-sm);
}

/* Button Styles */
.btn, button, input[type="submit"] {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    background: var(--primary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(78, 87, 212, 0.2);
    transition: all var(--transition-bounce);
    text-align: center;
}

.btn:hover, button:hover, input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(78, 87, 212, 0.3);
    background: var(--primary-dark);
    color: var(--white);
}

.btn:active, button:active, input[type="submit"]:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(78, 87, 212, 0.3);
}

.btn-primary {
    background: var(--primary-gradient);
}

.btn-secondary {
    background: var(--secondary-gradient);
}

.btn-tertiary {
    background: var(--tertiary-gradient);
}

.btn-workshop {
    background: var(--tertiary-gradient);
}

.btn-event {
    background: var(--secondary-gradient);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: var(--space-sm) 0;
    transition: all var(--transition-medium);
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

.desktop-nav ul li {
    margin: 0 var(--space-sm);
}

.desktop-nav ul li a {
    color: var(--dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.desktop-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-medium);
}

.desktop-nav ul li a:hover {
    color: var(--primary);
}

.desktop-nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.mobile-menu.active {
    max-height: 500px;
}

.mobile-menu ul {
    list-style: none;
    padding: var(--space-md);
    margin: 0;
}

.mobile-menu ul li {
    margin-bottom: var(--space-sm);
}

.mobile-menu ul li a {
    color: var(--dark);
    font-weight: 500;
    display: block;
    padding: var(--space-xs) 0;
}

.mobile-menu ul li a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    padding: var(--space-xl) 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 70px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-lg) 0;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s var(--transition-bounce) both;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s var(--transition-bounce) 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: var(--space-lg);
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s var(--transition-bounce) 0.4s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    animation: fadeInUp 1s var(--transition-bounce) 0.6s both;
}

/* Features Section */
.features-section {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.feature-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.feature-card:hover .image-container img {
    transform: scale(1.05);
}

.card-content {
    padding: var(--space-md);
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.progress-indicator {
    margin-top: var(--space-sm);
    width: 100%;
}

.progress-bar {
    height: 8px;
    background: var(--primary);
    border-radius: var(--radius-round);
    position: relative;
    margin-bottom: 5px;
    transition: width 1.5s var(--transition-bounce);
}

.progress-indicator span {
    font-size: 0.85rem;
    color: var(--medium);
    display: block;
    text-align: right;
}

/* Methodology Section */
.methodology-section {
    background-color: var(--light);
}

.methodology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.methodology-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    width: 100%;
}

.methodology-text h3 {
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.methodology-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin: var(--space-md) 0;
}

.stat-widget {
    background: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition-medium);
}

.stat-widget:hover {
    transform: translateY(-5px);
}

.stat-widget h4 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-widget p {
    font-size: 0.9rem;
    color: var(--medium);
}

.toggle-container {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.toggle {
    position: relative;
    display: inline-block;
    width: 100%;
    cursor: pointer;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 26px;
    background-color: var(--light-medium);
    border-radius: 34px;
    transition: var(--transition-medium);
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: var(--white);
    border-radius: 50%;
    transition: var(--transition-medium);
}

.toggle input:checked + .slider {
    background-color: var(--primary);
}

.toggle input:checked + .slider:before {
    transform: translateX(24px);
}

.toggle-label {
    margin-left: 60px;
    line-height: 26px;
}

/* Workshops Section */
.workshops-section {
    background-color: var(--white);
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.workshop-card {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.workshop-details {
    list-style: none;
    margin: var(--space-md) 0;
    text-align: left;
}

.workshop-details li {
    margin-bottom: 8px;
}

.workshop-details strong {
    color: var(--primary);
}

/* Sustainability Section */
.sustainability-section {
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.sustainability-section .section-header h2,
.sustainability-section .section-header p {
    color: var(--white);
}

.sustainability-content {
    display: flex;
    justify-content: flex-end;
}

.sustainability-text {
    max-width: 600px;
    background: rgba(0, 0, 0, 0.5);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    backdrop-filter: blur(5px);
}

.sustainability-text h3 {
    color: var(--white);
}

.sustainability-text p {
    color: var(--light);
}

.sustainability-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.sustainability-section .stat-widget {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(5px);
}

.sustainability-section .stat-widget h4 {
    color: var(--tertiary-light);
}

.sustainability-section .stat-widget p {
    color: var(--white);
}

/* Resources Section */
.resources-section {
    background-color: var(--light);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.resource-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.resource-links {
    list-style: none;
    margin-top: var(--space-sm);
}

.resource-links li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.resource-links li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.resource-links a {
    font-weight: 500;
    transition: color var(--transition-fast);
}

.resource-links a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Events Section */
.events-section {
    background-color: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.event-card {
    display: flex;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

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

.event-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--space-md);
    background: var(--primary-gradient);
    color: var(--white);
    min-width: 80px;
    text-align: center;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 1rem;
    text-transform: uppercase;
}

.event-content {
    padding: var(--space-md);
    flex: 1;
}

.event-details {
    display: flex;
    margin: var(--space-md) 0;
    gap: var(--space-md);
    color: var(--medium);
    font-size: 0.9rem;
}

.event-details i {
    margin-right: 5px;
    color: var(--primary);
}

/* Accolades Section */
.accolades-section {
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.accolades-section .section-header h2,
.accolades-section .section-header p {
    color: var(--white);
}

.accolades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.accolade-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    backdrop-filter: blur(5px);
    transition: transform var(--transition-medium), background var(--transition-medium);
}

.accolade-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.accolade-icon {
    width: 80px;
    height: 80px;
    margin-right: var(--space-md);
    flex-shrink: 0;
}

.accolade-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-round);
}

.accolade-content h3 {
    color: var(--white);
    margin-bottom: 5px;
}

.accolade-content p {
    color: var(--light);
    margin: 0;
}

.testimonials {
    max-width: 800px;
    margin: 0 auto;
}

.testimonials h3 {
    text-align: center;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.testimonial-slider {
    position: relative;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    backdrop-filter: blur(5px);
}

.testimonial p {
    color: var(--white);
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial p::before,
.testimonial p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-light);
    position: absolute;
}

.testimonial p::before {
    left: 0;
    top: -10px;
}

.testimonial p::after {
    right: 0;
    bottom: -30px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    text-align: right;
    margin-top: var(--space-sm);
}

.testimonial-author span:first-child {
    font-weight: 600;
    color: var(--white);
}

.testimonial-author span:last-child {
    font-size: 0.9rem;
    color: var(--light-medium);
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.contact-details {
    margin: var(--space-md) 0;
}

.contact-item {
    display: flex;
    margin-bottom: var(--space-md);
}

.contact-item i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-right: var(--space-md);
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-round);
    transition: transform var(--transition-bounce), background var(--transition-fast);
}

.social-links a:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.contact-form-container {
    background: var(--light);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
}

.contact-form-container h3 {
    color: var(--primary);
    margin-bottom: var(--space-md);
    text-align: center;
}

.contact-form {
    display: grid;
    gap: var(--space-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--medium-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--light-medium);
    border-radius: var(--radius-sm);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(78, 87, 212, 0.2);
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 1rem;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--white);
    border: 1px solid var(--light-medium);
    border-radius: var(--radius-sm);
}

.checkbox-container:hover input ~ .checkmark {
    background-color: var(--light);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: var(--space-lg) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--light-medium);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.footer-links-column h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    position: relative;
    padding-bottom: 10px;
}

.footer-links-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

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

.footer-links-column ul li {
    margin-bottom: 8px;
}

.footer-links-column ul li a {
    color: var(--light-medium);
    transition: color var(--transition-fast);
}

.footer-links-column ul li a:hover {
    color: var(--white);
}

.footer-social a {
    color: var(--light-medium);
    transition: color var(--transition-fast);
}

.footer-social a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--light-medium);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 15px;
    text-align: center;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent p {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.cookie-consent button {
    background: var(--tertiary);
    color: var(--white);
}

/* Success Page */
.success-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: var(--space-md);
}

.success-icon {
    font-size: 5rem;
    color: var(--tertiary);
    margin-bottom: var(--space-md);
    animation: bounce 1s var(--transition-bounce) infinite alternate;
}

.success-content h1 {
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.success-content p {
    max-width: 600px;
    margin: 0 auto var(--space-md);
}

/* Privacy & Terms Pages */
.page-content {
    padding-top: 130px;
    padding-bottom: var(--space-lg);
}

.page-content h1 {
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.page-content h2 {
    color: var(--dark);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.page-content p {
    margin-bottom: var(--space-md);
}

.page-content ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-20px);
    }
}

/* Media Queries */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .methodology-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        padding: var(--space-sm);
        flex-direction: row;
        gap: var(--space-sm);
        justify-content: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .section-header {
        margin-bottom: var(--space-md);
    }
    
    .methodology-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: var(--space-md);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: var(--space-xs);
}

.mb-2 {
    margin-bottom: var(--space-sm);
}

.mb-3 {
    margin-bottom: var(--space-md);
}

.mb-4 {
    margin-bottom: var(--space-lg);
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: var(--space-xs);
}

.mt-2 {
    margin-top: var(--space-sm);
}

.mt-3 {
    margin-top: var(--space-md);
}

.mt-4 {
    margin-top: var(--space-lg);
}