/* Global Variables */
:root {
    /* Primary Colors - Complementary Color Scheme */
    --primary-color: #4e57d4;
    --primary-dark: #3a42b0;
    --primary-light: #7b81e3;
    --complementary: #d4cb4e;
    --complementary-dark: #b0a83a;
    --complementary-light: #e3dc7b;
    
    /* Neutral Colors */
    --dark: #222222;
    --dark-gray: #444444;
    --medium-gray: #777777;
    --light-gray: #dddddd;
    --off-white: #f7f7f7;
    --white: #ffffff;
    
    /* Shadows and Effects */
    --neumorphic-shadow: 8px 8px 16px rgba(0, 0, 0, 0.05), -8px -8px 16px rgba(255, 255, 255, 0.8);
    --neumorphic-shadow-inset: inset 4px 4px 8px rgba(0, 0, 0, 0.05), inset -4px -4px 8px rgba(255, 255, 255, 0.8);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Base Styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    background-color: var(--off-white);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: var(--dark);
}

p {
    line-height: 1.8;
    color: var(--dark-gray);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
}

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

.read-more {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 15px;
    position: relative;
    padding-right: 20px;
}

.read-more:after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s var(--transition-bounce);
}

.read-more:hover {
    color: var(--primary-dark);
}

.read-more:hover:after {
    transform: translate(5px, -50%);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--complementary));
    margin: 0 auto 40px;
    border-radius: 4px;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto 40px;
}

section {
    padding: 80px 0;
    position: relative;
}

section:nth-child(even) {
    background-color: var(--white);
}

/* Button Styles */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s var(--transition-bounce);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--neumorphic-shadow);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.5s var(--transition-bounce);
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
}

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

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(78, 87, 212, 0.3);
}

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

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(78, 87, 212, 0.3);
}

.btn-outline-light {
    color: var(--white);
    border-color: var(--white);
    background-color: transparent;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active {
    background-color: var(--white) !important;
    border-color: var(--white) !important;
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

/* Navbar Styles */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 600;
    padding: 10px 15px;
    transition: all 0.3s var(--transition-smooth);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-toggler {
    border: none;
    padding: 10px;
    outline: none;
    box-shadow: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0;
    padding: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* About Section */
.about-section {
    overflow: hidden;
}

.about-content {
    padding-right: 30px;
}

.about-content h3 {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--complementary));
    border-radius: 3px;
}

.about-image-container {
    box-shadow: var(--card-shadow);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

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

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

.stats-widget {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--neumorphic-shadow);
    flex: 1;
    margin: 0 10px;
}

.stat-item:first-child {
    margin-left: 0;
}

.stat-item:last-child {
    margin-right: 0;
}

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    margin-bottom: 0;
    color: var(--medium-gray);
}

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

.instructor-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--neumorphic-shadow);
    transition: transform 0.3s var(--transition-bounce);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-image {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

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

.card-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.instructor-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.instructor-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.social-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s var(--transition-smooth);
}

.social-link:hover {
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Behind The Scenes Section */
.behind-scenes-section {
    background-color: var(--off-white);
    overflow: hidden;
}

.timeline-container {
    position: relative;
    padding: 30px 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--complementary));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--white);
    border: 3px solid var(--primary-color);
    z-index: 1;
    box-shadow: 0 0 0 5px rgba(78, 87, 212, 0.2);
}

.timeline-content {
    background-color: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--neumorphic-shadow);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.behind-scenes-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    height: 100%;
}

.behind-scenes-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.resource-card {
    background-color: var(--off-white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--neumorphic-shadow);
    transition: all 0.3s var(--transition-bounce);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.resource-card a {
    color: var(--primary-color);
    font-weight: 600;
}

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

.resource-card p {
    color: var(--medium-gray);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--off-white);
}

.pricing-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--neumorphic-shadow);
    transition: all 0.3s var(--transition-bounce);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(78, 87, 212, 0.15);
    position: relative;
    z-index: 1;
    border: 2px solid var(--primary-color);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-header {
    background-color: var(--white);
    padding: 30px;
    text-align: center;
    border-bottom: none;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--medium-gray);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    color: var(--dark-gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: 700;
}

.pricing-cta {
    margin-top: auto;
    padding-top: 20px;
}

/* Customer Stories Section */
.stories-section {
    background-color: var(--white);
}

.story-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--neumorphic-shadow);
    transition: all 0.3s var(--transition-bounce);
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-card .card-image {
    flex: 0 0 150px;
    padding: 30px;
}

.story-card .card-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: var(--neumorphic-shadow);
}

.story-card .card-content {
    flex: 1;
    padding: 30px 30px 30px 0;
}

.story-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.story-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.story-text {
    font-style: italic;
    color: var(--dark-gray);
}

/* Community Section */
.community-section {
    background-color: var(--off-white);
    overflow: hidden;
}

.community-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.community-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

.community-image:hover img {
    transform: scale(1.05);
}

.community-content {
    padding-left: 30px;
}

.community-content h3 {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.community-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--complementary));
    border-radius: 3px;
}

.community-stats {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}

.community-stats .stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--neumorphic-shadow);
    flex: 1;
    margin: 0 10px;
}

.community-stats .stat-item:first-child {
    margin-left: 0;
}

.community-stats .stat-item:last-child {
    margin-right: 0;
}

.community-stats .stat-item h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.community-stats .stat-item p {
    margin-bottom: 0;
    color: var(--medium-gray);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--neumorphic-shadow);
    transition: all 0.3s var(--transition-bounce);
    height: 250px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-info p {
    color: var(--light-gray);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Press Section */
.press-section {
    background-color: var(--off-white);
}

.press-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--neumorphic-shadow);
    transition: all 0.3s var(--transition-bounce);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.press-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.press-card .card-image {
    overflow: hidden;
    height: 200px;
}

.press-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

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

.press-card .card-content {
    padding: 30px;
    flex-grow: 1;
}

.press-date {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.press-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.press-excerpt {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

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

.blog-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--neumorphic-shadow);
    transition: all 0.3s var(--transition-bounce);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-card .card-image {
    overflow: hidden;
    height: 200px;
}

.blog-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

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

.blog-card .card-content {
    padding: 30px;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

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

.contact-info {
    padding-right: 30px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.info-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--complementary));
    border-radius: 3px;
}

.contact-form-container {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--neumorphic-shadow);
}

.form-control {
    border: none;
    border-radius: 10px;
    padding: 15px;
    background-color: var(--off-white);
    box-shadow: var(--neumorphic-shadow-inset);
    transition: all 0.3s var(--transition-smooth);
}

.form-control:focus {
    box-shadow: var(--neumorphic-shadow-inset), 0 0 0 3px rgba(78, 87, 212, 0.2);
    border: none;
    outline: none;
}

/* Footer Styles */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer h3 {
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--complementary));
    border-radius: 3px;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
}

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

.footer-links a {
    color: var(--light-gray);
    transition: all 0.3s var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--complementary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    color: var(--light-gray);
    transition: all 0.3s var(--transition-bounce);
    font-weight: 600;
}

.social-links a:hover {
    color: var(--complementary);
    transform: translateY(-3px);
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
    background-color: var(--complementary);
    border-color: var(--complementary);
}

.newsletter-form .btn:hover {
    background-color: var(--complementary-dark);
    border-color: var(--complementary-dark);
}

.copyright {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    color: var(--light-gray);
    margin-bottom: 0;
}

/* Cookie Consent */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 0;
    color: var(--white);
}

/* Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--off-white);
    padding: 100px 0;
}

.success-container {
    background-color: var(--white);
    border-radius: 20px;
    padding: 60px;
    box-shadow: var(--neumorphic-shadow);
    max-width: 600px;
    width: 100%;
}

.success-icon {
    width: 100px;
    height: 100px;
    background-color: var(--complementary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--complementary-dark);
    font-size: 40px;
}

.success-page h1 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.success-page p {
    margin-bottom: 30px;
}

/* About, Privacy, Terms Pages */
.page-content {
    padding-top: 100px;
    min-height: calc(100vh - 400px);
}

.page-header {
    background-color: var(--primary-color);
    padding: 60px 0;
    margin-bottom: 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0;
}

.page-text {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--neumorphic-shadow);
    margin-bottom: 60px;
}

.page-text h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-text p {
    margin-bottom: 20px;
}

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

.fade-in {
    animation: fadeIn 0.5s var(--transition-smooth) forwards;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

.bounce {
    animation: bounce 2s infinite;
}

/* Media Queries */
@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section .lead {
        font-size: 1.3rem;
    }
    
    .community-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 991.98px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .story-card {
        flex-direction: column;
    }
    
    .story-card .card-image {
        flex: 0 0 auto;
        padding: 30px 30px 0;
    }
    
    .story-card .card-content {
        padding: 0 30px 30px;
    }
    
    .timeline-container::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 40px;
    }
    
    .timeline-marker {
        left: 7px;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .stats-widget, .community-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        margin: 0;
    }
    
    .footer-links {
        columns: 1;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .success-container {
        padding: 40px 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .section-divider {
        width: 60px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
}