* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100vw;
    width: 100%;
}

/* Ensure all text elements wrap properly */
h1, h2, h3, h4, h5, h6, p, span, div, a, li, blockquote {
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Prevent images and media from overflowing */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Ensure tables are responsive */
table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

/* Ensure buttons don't overflow */
button, .cta-button, .cta-button-large, .toggle-btn {
    max-width: 100%;
    word-wrap: break-word;
}

/* Register Button - Opvallende aanmeldknop */
.register-button {
    display: inline-block;
    background: linear-gradient(135deg, #00D084 0%, #00A86B 100%);
    color: white;
    padding: 20px 50px;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    margin-top: 2rem;
    box-shadow: 0 10px 40px rgba(0, 208, 132, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(0, 208, 132, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 60px rgba(0, 208, 132, 0.6);
    }
}

.register-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.register-button:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 20px 60px rgba(0, 208, 132, 0.6);
    animation: none;
}

.register-button:hover::before {
    width: 400px;
    height: 400px;
}

.register-button::after {
    content: '→';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s;
}

.register-button:hover::after {
    opacity: 1;
    right: 20px;
}

/* Loading animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #0066B3 0%, #003366 100%);
    padding: 0.8rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-logo {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s;
}

.nav-logo:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255,255,255,0.5));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0066B3 0%, #001a33 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: bgShift 15s ease-in-out infinite;
}

@keyframes bgShift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}


.save-the-date {
    font-size: 2.5rem;
    letter-spacing: 0.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    animation: fadeInDown 1s ease-out 0.3s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.date-large {
    font-size: 6rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 2rem;
    font-family: 'Arial Black', sans-serif;
    position: relative;
    z-index: 1;
    animation: scaleIn 1s ease-out 0.3s both;
    text-shadow: 0 0 30px rgba(255,255,255,0.5), 0 0 60px rgba(255,255,255,0.3);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.event-details {
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 300;
    word-break: break-word;
    max-width: 100%;
}

.event-tagline {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-style: italic;
    opacity: 0.9;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #0066B3;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0,102,179,0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Sections */
.section {
    padding: 80px 20px;
}

.section-alt {
    background: #f5f8fa;
}

.section-stats {
    background: linear-gradient(135deg, #f5f8fa 0%, #e6f2ff 100%);
}

/* Statistics Chart */
.stats-chart {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 450px;
    margin: 3rem 0 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,102,179,0.15);
    gap: 0.3rem;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.stats-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0,102,179,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    position: relative;
    z-index: 1;
}

.bar-fill {
    width: 100%;
    background: linear-gradient(180deg, #0066B3 0%, #004080 50%, #003366 100%);
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
    min-height: 40px;
    height: 0;
    animation: growBar 1.5s ease-out forwards;
    animation-delay: var(--delay);
    box-shadow: 0 -5px 15px rgba(0,102,179,0.2);
}

.bar-fill.highlighted {
    background: linear-gradient(180deg, #0088ff 0%, #0066B3 50%, #004080 100%);
    box-shadow: 0 -5px 25px rgba(0,136,255,0.4), 0 0 30px rgba(0,136,255,0.2);
    animation: growBarHighlight 1.5s ease-out forwards, pulse 2s ease-in-out infinite 1.5s;
}

@keyframes growBar {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        height: var(--height);
        opacity: 1;
    }
}

@keyframes growBarHighlight {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        height: var(--height);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 -5px 25px rgba(0,136,255,0.4), 0 0 30px rgba(0,136,255,0.2);
    }
    50% {
        box-shadow: 0 -5px 35px rgba(0,136,255,0.6), 0 0 45px rgba(0,136,255,0.4);
    }
}

.bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 100%);
    border-radius: 8px 8px 0 0;
}

.bar-label {
    color: white;
    font-weight: bold;
    font-size: 0.85rem;
    white-space: nowrap;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.year-label {
    margin-top: 0.5rem;
    font-weight: 600;
    color: #0066B3;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.2;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chart-bar:hover .bar-fill {
    filter: brightness(1.15);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 -8px 25px rgba(0,102,179,0.4);
}

/* Stats Disclaimer */
.stats-disclaimer {
    background: linear-gradient(135deg, #fff4e6 0%, #ffe6cc 100%);
    border-left: 5px solid #ff9800;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(255,152,0,0.1);
    animation: slideIn 1s ease-out 1.5s both;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stats-disclaimer p {
    margin: 0;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.stats-disclaimer strong {
    color: #ff6f00;
}

.stats-disclaimer em {
    font-style: normal;
    font-weight: 600;
    color: #e65100;
}

/* Stats Summary */
.stats-summary {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-box {
    background: white;
    padding: 2.5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,102,179,0.12);
    text-align: center;
    min-width: 220px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* New Infographic Styles */
.infographic-main {
    margin: 3rem 0;
}

.infographic-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.infographic-big-stat {
    background: linear-gradient(135deg, #0066B3 0%, #003366 100%);
    padding: 4rem 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,102,179,0.3);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.infographic-big-stat::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.big-number {
    font-size: 6rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.big-label {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.big-sublabel {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.infographic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-stat-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.info-stat-card:nth-child(1) { animation-delay: 0.2s; }
.info-stat-card:nth-child(2) { animation-delay: 0.3s; }
.info-stat-card:nth-child(3) { animation-delay: 0.4s; }
.info-stat-card:nth-child(4) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0066B3 0%, #003366 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.info-stat-card:hover::before {
    transform: scaleX(1);
}

.info-stat-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,102,179,0.2);
}

.card-critical {
    border-color: #e74c3c;
}

.card-critical .info-stat-icon {
    color: #e74c3c;
}

.card-warning {
    border-color: #f39c12;
}

.card-warning .info-stat-icon {
    color: #f39c12;
}

.card-alarming {
    border-color: #e67e22;
}

.card-alarming .info-stat-icon {
    color: #e67e22;
}

.card-urgent {
    border-color: #c0392b;
}

.card-urgent .info-stat-icon {
    color: #c0392b;
}

.info-stat-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.info-stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #0066B3;
    line-height: 1;
    margin-bottom: 1rem;
}

.card-critical .info-stat-number {
    color: #e74c3c;
}

.card-warning .info-stat-number {
    color: #f39c12;
}

.card-alarming .info-stat-number {
    color: #e67e22;
}

.card-urgent .info-stat-number {
    color: #c0392b;
}

.info-stat-label {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    font-weight: 500;
}

.stats-source {
    background: linear-gradient(135deg, #f5f8fa 0%, #e6f2ff 100%);
    border-left: 5px solid #0066B3;
    padding: 2rem 2.5rem;
    margin: 3rem 0 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,102,179,0.1);
    animation: slideIn 1s ease-out 1s both;
}

.stats-source p {
    margin: 0;
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
}

.stats-source strong {
    color: #0066B3;
}

.stats-source em {
    font-style: italic;
    color: #004080;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066B3 0%, #0088ff 100%);
}

.stat-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0,102,179,0.2);
}

.stat-pulse {
    animation: fadeInUp 1s ease-out 2s both;
}

.stat-pulse:nth-child(2) {
    animation-delay: 2.2s;
}

.stat-pulse:nth-child(3) {
    animation-delay: 2.4s;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #0066B3 0%, #0088ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

.section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #0066B3;
    word-break: break-word;
    overflow-wrap: break-word;
    padding: 0 15px;
}

.intro-text, .section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
    word-break: break-word;
    overflow-wrap: break-word;
    padding: 0 15px;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,102,179,0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 4px solid #0066B3;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,102,179,0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    box-shadow: 0 15px 40px rgba(0,102,179,0.3);
}

.icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.feature-card:hover .icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #0066B3;
    word-break: break-word;
}

.feature-card p {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Program Section */
.program {
    max-width: 900px;
    margin: 0 auto;
}

.program-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateX(-50px);
    position: relative;
    overflow: hidden;
}

.program-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.program-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0066B3 0%, #0088ff 100%);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.program-item:hover {
    transform: translateX(15px);
    box-shadow: 0 8px 25px rgba(0,102,179,0.2);
}

.program-item:hover::before {
    transform: scaleY(1);
}

.time {
    font-size: 1.1rem;
    font-weight: bold;
    color: #0066B3;
    min-width: 140px;
    padding: 0.5rem 1rem;
    background: #e6f2ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-content h3 {
    color: #0066B3;
    margin-bottom: 0.5rem;
}

.program-content p {
    color: #666;
    word-break: break-word;
    overflow-wrap: break-word;
}

.program-content h3 {
    word-break: break-word;
}

/* Program Toggle Buttons */
.program-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem 0;
    flex-wrap: wrap;
}

.toggle-btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 3px solid #0066B3;
    background: white;
    color: #0066B3;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,102,179,0.1);
}

.toggle-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,102,179,0.2);
}

.toggle-btn.active {
    background: linear-gradient(135deg, #0066B3 0%, #003366 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,102,179,0.3);
}

/* Program Views */
.program-view {
    display: none;
    animation: programFadeIn 0.5s ease;
}

.program-view.active {
    display: block;
}

@keyframes programFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Program Components */
.program-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.component-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.component-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,102,179,0.2);
    border-color: #0066B3;
}

.component-card.full-width {
    grid-column: 1 / -1;
}

.component-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.component-card h3 {
    color: #0066B3;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.component-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.component-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.component-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: #333;
    font-weight: 500;
}

.component-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066B3;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Theme Grid */
.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.theme-item {
    background: linear-gradient(135deg, #e6f2ff 0%, #f5f8fa 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #d0e4f5;
}

.theme-item:hover {
    background: linear-gradient(135deg, #0066B3 0%, #003366 100%);
    color: white;
    transform: scale(1.05);
}

.theme-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Timeline / Blokkenschema */
.timeline {
    max-width: 900px;
    margin: 3rem auto;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0066B3 0%, #003366 100%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    animation: slideInLeft 0.6s ease forwards;
    opacity: 0;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-time {
    min-width: 120px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066B3;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #e6f2ff 0%, #f5f8fa 100%);
    border-radius: 12px;
    border: 3px solid #0066B3;
    height: fit-content;
    box-shadow: 0 4px 15px rgba(0,102,179,0.15);
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    border-left: 5px solid #0066B3;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,102,179,0.2);
}

.timeline-content.opening {
    border-left-color: #00A86B;
    background: linear-gradient(135deg, #ffffff 0%, #f0fff8 100%);
}

.timeline-content.lecture {
    border-left-color: #0066B3;
}

.timeline-badge {
    position: absolute;
    left: -2.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 4px solid #0066B3;
}

.timeline-content h3 {
    color: #0066B3;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.timeline-subtitle {
    font-style: italic;
    color: #0066B3;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #555;
    line-height: 1.8;
}

.timeline-note {
    background: linear-gradient(135deg, #fff9e6 0%, #fffbf0 100%);
    border: 3px solid #ffd700;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 8px 25px rgba(255,215,0,0.2);
}

.timeline-note p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Forms */
.signup-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
    padding: 16px;
    border: 2px solid #d0e4f5;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.signup-form input:focus,
.signup-form select:focus,
.signup-form textarea:focus {
    outline: none;
    border-color: #0066B3;
    box-shadow: 0 0 0 3px rgba(0,102,179,0.1);
}

.submit-button {
    background: linear-gradient(135deg, #0066B3 0%, #003366 100%);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,102,179,0.3);
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info h3 {
    color: #0066B3;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contact-info p {
    line-height: 1.8;
    color: #555;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-info a {
    word-break: break-all;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #003366 0%, #001a33 100%);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    word-break: keep-all;
    white-space: nowrap;
}

.footer-links a:hover {
    opacity: 0.7;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Footer Sponsors Section */
.footer-sponsors {
    text-align: center;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sponsor-text {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-sponsor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-sponsor-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-sponsor-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Sponsors Page Styles */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.sponsor-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.sponsor-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0,102,179,0.15);
    border-color: #0066B3;
}

.sponsor-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.sponsor-logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.sponsor-card h3 {
    color: #0066B3;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.sponsor-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Sponsor Needs Section */
.sponsor-needs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.need-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5f8fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #e6f2ff;
}

.need-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0,102,179,0.15);
    border-color: #0066B3;
}

.need-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.need-card h3 {
    color: #0066B3;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.need-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Sponsor CTA */
.sponsor-cta {
    background: linear-gradient(135deg, #0066B3 0%, #003366 100%);
    padding: 4rem 3rem;
    border-radius: 25px;
    text-align: center;
    margin-top: 4rem;
    box-shadow: 0 15px 50px rgba(0,102,179,0.25);
    color: white;
}

.sponsor-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}

.sponsor-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.sponsor-cta .cta-button-large {
    background: white;
    color: #0066B3;
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.sponsor-cta .cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    background: #f5f5f5;
}

/* Hero Small for subpages */
.hero-small {
    background: linear-gradient(135deg, #0066B3 0%, #001a33 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero-small h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.hero-small p {
    font-size: 1.2rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Active navigation link */
.nav-links a.active {
    opacity: 0.8;
    border-bottom: 2px solid white;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,102,179,0.2);
}

.pricing-card.featured {
    border: 3px solid #0066B3;
    transform: scale(1.05);
}

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

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #0066B3;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.package-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0066B3;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.package-button {
    width: 100%;
    padding: 15px;
    background: white;
    color: #0066B3;
    border: 2px solid #0066B3;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.package-button:hover {
    background: #0066B3;
    color: white;
}

.package-button.primary {
    background: #0066B3;
    color: white;
}

.package-button.primary:hover {
    background: #003366;
}

/* Extras Grid */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.extra-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.extra-card:hover {
    transform: translateY(-5px);
}

.extra-card h3 {
    color: #0066B3;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.extra-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0066B3;
    margin-bottom: 1rem;
}

/* Exhibitor Form */
.exhibitor-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.exhibitor-form h3 {
    color: #0066B3;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #0066B3;
}

.info-box h3 {
    color: #0066B3;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-box p {
    line-height: 1.8;
    color: #555;
    word-break: break-word;
    overflow-wrap: break-word;
}

.info-box h3 {
    word-break: break-word;
}

/* Lectures Grid */
.lectures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.lecture-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,102,179,0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px);
    position: relative;
}

.lecture-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.lecture-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,102,179,0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.lecture-card:hover {
    box-shadow: 0 15px 45px rgba(0,102,179,0.25);
    transform: translateY(-10px) scale(1.02);
}

.lecture-card:hover::after {
    opacity: 1;
}

.lecture-header {
    background: linear-gradient(135deg, #0066B3 0%, #003366 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.lecture-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.lecture-org {
    font-size: 1rem;
    opacity: 0.9;
    font-style: italic;
}

.lecture-content {
    padding: 2rem;
}

.lecture-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
    word-break: break-word;
    overflow-wrap: break-word;
}

.lecture-focus {
    background: #f5f8fa;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #0066B3;
    margin-top: 1.5rem !important;
}

.lecture-focus strong {
    color: #0066B3;
}

/* Organizer Page */
.organizer-content {
    max-width: 900px;
    margin: 0 auto;
}

.organizer-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.organizer-intro h2 {
    font-size: 3rem;
    color: #0066B3;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.3rem;
    color: #555;
    font-weight: 500;
}

.story-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,102,179,0.1);
    margin-bottom: 3rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(30px);
}

.story-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.story-section:hover {
    box-shadow: 0 10px 35px rgba(0,102,179,0.15);
    transform: translateY(-5px);
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

.instagram-link {
    color: #0066B3;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.instagram-link:hover {
    color: #0088ff;
    text-decoration: underline;
}

.quote-section {
    margin: 3rem 0;
}

.quote-box {
    background: linear-gradient(135deg, #0066B3 0%, #003366 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,102,179,0.2);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.quote-box blockquote {
    margin: 0;
    color: white;
}

.quote-box blockquote p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.quote-box cite {
    font-size: 1.1rem;
    font-weight: 600;
    font-style: normal;
    display: block;
    text-align: right;
    opacity: 0.9;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.achievement-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,102,179,0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 4px solid #0066B3;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    overflow: hidden;
}

.achievement-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,102,179,0.08), transparent);
    transition: left 0.6s;
}

.achievement-card:hover::before {
    left: 100%;
}

.achievement-card:hover {
    box-shadow: 0 15px 45px rgba(0,102,179,0.25);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.achievement-card h3 {
    color: #0066B3;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.achievement-card p {
    color: #555;
    line-height: 1.6;
    word-break: break-word;
    overflow-wrap: break-word;
}

.achievement-card h3 {
    word-break: break-word;
}

/* Mission Box */
.mission-box {
    background: linear-gradient(135deg, #f5f8fa 0%, #e6f2ff 100%);
    padding: 3rem;
    border-radius: 20px;
    border-left: 6px solid #0066B3;
    box-shadow: 0 5px 20px rgba(0,102,179,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateX(-30px);
}

.mission-box.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.mission-box:hover {
    box-shadow: 0 10px 35px rgba(0,102,179,0.2);
    transform: translateX(5px);
}

.mission-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.mission-content .icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Social Section */
.social-section {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #0066B3 0%, #003366 100%);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0,102,179,0.2);
    position: relative;
    overflow: hidden;
}

.social-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.social-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,102,179,0.4);
}

.social-button:hover::before {
    width: 400px;
    height: 400px;
}

.social-button:hover .social-icon {
    animation: bounce 0.6s;
}

.social-button-linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #004471 100%);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.social-icon {
    font-size: 2rem;
}

.social-text {
    font-size: 1.1rem;
}

/* Location Page Styles */
.location-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.location-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,102,179,0.1);
    text-align: center;
    transition: all 0.3s;
}

.location-featured {
    border-top: 4px solid #0066B3;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,102,179,0.2);
}

.location-card h3 {
    color: #0066B3;
    margin: 1rem 0;
    font-size: 1.5rem;
}

.location-card p {
    line-height: 1.8;
    color: #555;
    word-break: break-word;
    overflow-wrap: break-word;
}

.location-card h3 {
    word-break: break-word;
}

/* Calendar Button */
.calendar-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 30px;
    background: linear-gradient(135deg, #0066B3 0%, #003366 100%);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,102,179,0.2);
}

.calendar-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,102,179,0.3);
    background: linear-gradient(135deg, #0077cc 0%, #004080 100%);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.modal-content h2 {
    color: #0066B3;
    margin-bottom: 1rem;
    font-size: 2rem;
    text-align: center;
}

.modal-content p {
    text-align: center;
    color: #555;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.modal-close:hover {
    color: #0066B3;
}

/* Calendar Options */
.calendar-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.calendar-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f5f8fa 0%, #e6f2ff 100%);
    border: 2px solid #d0e4f5;
    border-radius: 12px;
    text-decoration: none;
    color: #0066B3;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.calendar-option:hover {
    background: linear-gradient(135deg, #0066B3 0%, #003366 100%);
    color: white;
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,102,179,0.2);
}

.calendar-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

/* Travel Grid */
.travel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.travel-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,102,179,0.1);
    transition: all 0.3s;
}

.travel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,102,179,0.2);
}

.travel-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.travel-card h3 {
    color: #0066B3;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.travel-card p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.5rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.travel-card ul {
    color: #555;
    line-height: 1.8;
    word-break: break-word;
}

.travel-card ul li {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Facilities Grid - Location Page */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.facility-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,102,179,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #e6f2ff;
    text-align: center;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0,102,179,0.2);
    border-color: #0066B3;
}

.facility-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.facility-card h3 {
    color: #0066B3;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.facility-card p {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.facility-card strong {
    color: #0066B3;
}

/* Contact Simple */
.contact-simple {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-simple .contact-info {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,102,179,0.1);
}

.contact-simple h3 {
    color: #0066B3;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-simple a {
    color: #0066B3;
    text-decoration: none;
    font-weight: 600;
}

.contact-simple a:hover {
    text-decoration: underline;
}

/* Visit Info & Highlights */
.visit-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-highlight {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,102,179,0.1);
    text-align: center;
    border-top: 4px solid #0066B3;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: scale(0.9);
    position: relative;
}

.info-highlight.animate-in {
    opacity: 1;
    transform: scale(1);
}

.info-highlight:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,102,179,0.2);
}

.info-highlight::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, #0066B3, #0088ff, #0066B3);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.info-highlight:hover::after {
    opacity: 1;
}

.info-highlight h3 {
    color: #0066B3;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-highlight p {
    color: #555;
    line-height: 1.8;
}

/* Info Note */
.info-note {
    background: #fff4e6;
    border-left: 5px solid #ff9800;
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 8px;
    text-align: center;
}

.info-note p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

/* Rules Box */
.rules-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    margin-top: 2rem;
    border-left: 4px solid #0066B3;
}

.rules-box h3 {
    color: #0066B3;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.rules-box ul {
    list-style: none;
    padding: 0;
}

.rules-box ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.rules-box ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066B3;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #f5f8fa 0%, #e6f2ff 100%);
}

.cta-text {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #0066B3 0%, #003366 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,102,179,0.3);
}

.cta-button-large.secondary {
    background: white;
    color: #0066B3;
    border: 2px solid #0066B3;
}

.cta-button-large.secondary:hover {
    background: #0066B3;
    color: white;
}

/* Responsive */
/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .feature-card.full-width {
        grid-column: 1 / -1;
    }
    
    .lectures-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .lecture-card:last-child {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .visit-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .info-highlight:last-child {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .nav-links {
        gap: 1.2rem;
    }
    
    .nav-links a {
        font-size: 0.95rem;
    }
    
    .travel-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-main {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sponsor-card:last-child {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .program-components {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .component-card.full-width {
        grid-column: 1 / -1;
    }
    
    .infographic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .theme-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Text wrapping for tablet */
    h1, h2, h3, h4, h5, h6, p, li, a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-small h1 {
        font-size: 2.2rem;
        padding: 0 20px;
    }
    
    .hero-small p {
        padding: 0 20px;
    }
    
    .event-details {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .register-button {
        font-size: 1.2rem;
        padding: 18px 40px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #0066B3 0%, #003366 100%);
        flex-direction: column;
        padding: 2rem 0;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        transition: all 0.3s;
    }
    
    .nav-links a:hover {
        background: rgba(255,255,255,0.1);
        padding-left: 2.5rem;
    }
    
    .nav-links a.active {
        background: rgba(255,255,255,0.15);
        border-left: 4px solid white;
    }
    
    .nav-logo {
        height: 50px;
    }
    
    .location-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
        max-width: 100%;
    }
    
    .location-card {
        padding: 2rem;
        overflow: hidden;
        max-width: 100%;
    }
    
    .location-featured .icon {
        display: block;
        text-align: center;
    }
    
    .travel-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .travel-card {
        padding: 1.5rem;
        overflow: hidden;
        max-width: 100%;
    }
    
    .travel-card h3,
    .location-card h3 {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .travel-icon {
        font-size: 2.5rem;
        display: block;
        text-align: center;
    }
    
    .travel-card {
        overflow: hidden;
        position: relative;
    }
    
    /* Facilities - Mobile */
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .facility-card {
        padding: 2rem 1.5rem;
        overflow: hidden;
        position: relative;
    }
    
    .facility-icon {
        font-size: 3rem;
        display: block;
        text-align: center;
    }
    
    .facility-card h3 {
        font-size: 1.3rem;
    }
    
    .facility-card p {
        font-size: 1rem;
    }
    
    .contact-simple .contact-info {
        padding: 2rem 1.5rem;
    }
    
    .cta-button-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 90%;
        max-width: 300px;
        overflow: hidden;
        word-break: break-word;
        text-overflow: ellipsis;
    }
    
    .cta-button {
        overflow: hidden;
        word-break: break-word;
        max-width: 100%;
    }
    
    .calendar-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: auto;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
    
    .modal-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .modal-content h2 {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .modal-close {
        right: 1rem;
        top: 1rem;
        font-size: 1.8rem;
    }
    
    .calendar-option {
        padding: 1.2rem;
        font-size: 1rem;
        gap: 1rem;
    }
    
    .calendar-icon {
        font-size: 1.5rem;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    header {
        padding: 0.6rem 0;
        overflow-x: hidden;
        max-width: 100%;
    }
    
    nav {
        padding: 0 1rem;
        max-width: 100%;
        overflow: hidden;
    }
    
    .logo {
        max-width: 80px;
        overflow: hidden;
    }
    
    .save-the-date {
        font-size: 1.5rem;
        letter-spacing: 0.3rem;
    }
    
    .hero-small h1 {
        font-size: 2rem;
    }
    
    .hero-small p {
        font-size: 1rem;
    }
    
    .date-large {
        font-size: 3.5rem;
    }
    
    .event-details {
        font-size: 0.7rem;
        letter-spacing: 0.05rem;
        padding: 0 15px;
        word-spacing: 0.1rem;
        line-height: 1.4;
    }
    
    .event-tagline {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .register-button {
        font-size: 1.1rem;
        padding: 16px 35px;
        margin-top: 1.5rem;
        width: 90%;
        max-width: 400px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .register-button::after {
        display: none;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .contact-info {
        padding: 1.5rem;
        overflow: hidden;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .contact-info h3 {
        word-break: break-word;
    }
    
    .contact-info p,
    .contact-info a {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .section-intro {
        font-size: 1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .feature-card {
        max-width: 100%;
        overflow: hidden;
    }
    
    .icon {
        display: block;
        text-align: center;
        width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .program-item {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        max-width: 100%;
        overflow: hidden;
    }
    
    .footer-sponsors {
        max-width: 100%;
        overflow: hidden;
    }
    
    .sponsor-text {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button-large {
        width: 100%;
        max-width: 300px;
    }
    
    .stats-chart {
        height: 300px;
        padding: 0.8rem 0.3rem;
        gap: 0.1rem;
        margin: 1.5rem 0 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    
    .bar-label {
        font-size: 0.6rem;
    }
    
    .year-label {
        font-size: 0.5rem;
        line-height: 1.1;
        padding: 0 2px;
    }
    
    .chart-bar {
        min-width: 28px;
        flex-shrink: 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-box {
        padding: 2rem 1.5rem;
        min-width: 180px;
        overflow: hidden;
        max-width: 100%;
    }
    
    .stat-box::before {
        display: none;
    }
    
    .stats-summary {
        gap: 1rem;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .stats-disclaimer {
        padding: 1rem;
        font-size: 0.85rem;
        overflow: hidden;
        max-width: 100%;
    }
    
    .stats-disclaimer p {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .stat-description {
        font-size: 1rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .organizer-intro {
        max-width: 100%;
        overflow: hidden;
        padding: 0 15px;
    }
    
    .organizer-intro h2 {
        font-size: 2rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .subtitle {
        font-size: 1.1rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .organizer-content {
        max-width: 100%;
        overflow: hidden;
    }
    
    .story-section {
        padding: 2rem 1.5rem;
        overflow: hidden;
        max-width: 100%;
    }
    
    .story-text {
        font-size: 1rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .quote-box {
        padding: 2rem 1.5rem;
        overflow: hidden;
        max-width: 100%;
    }
    
    .quote-icon {
        display: block;
        text-align: center;
    }
    
    .quote-box blockquote p {
        font-size: 1.1rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .mission-box {
        padding: 2rem 1.5rem;
        overflow: hidden;
        max-width: 100%;
    }
    
    .mission-content {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .mission-content .icon {
        display: block;
        text-align: center;
    }
    
    .mission-content p {
        font-size: 1rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .social-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 350px;
        overflow: hidden;
        word-break: break-word;
    }
    
    .social-icon {
        display: inline-block;
        text-align: center;
    }
    
    .social-section {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .achievement-card {
        overflow: hidden;
        max-width: 100%;
    }
    
    .achievement-icon {
        display: block;
        text-align: center;
    }
    
    .lectures-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .lecture-card {
        margin-bottom: 1rem;
        overflow: hidden;
        max-width: 100%;
    }
    
    .lecture-header {
        padding: 1.5rem;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    
    .lecture-content {
        padding: 1.5rem;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    
    .program {
        padding: 0;
        max-width: 100%;
    }
    
    .program-item {
        padding: 1rem;
        margin-bottom: 1rem;
        overflow: hidden;
        max-width: 100%;
    }
    
    .program-item::before {
        display: none;
    }
    
    .time {
        min-width: 100px;
        font-size: 0.9rem;
        padding: 0.5rem;
        word-break: keep-all;
    }
    
    .visit-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .info-highlight {
        padding: 2rem 1.5rem;
        overflow: hidden;
        max-width: 100%;
        position: relative;
    }
    
    .info-highlight::after {
        display: none;
    }
    
    .info-highlight h3 {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 15px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .save-the-date {
        font-size: 1.3rem;
        letter-spacing: 0.2rem;
    }
    
    .social-button-linkedin,
    .social-button {
        font-size: 0.95rem;
        padding: 1rem 1.5rem;
    }
    
    .social-text {
        font-size: 0.95rem;
    }
    
    table {
        width: 100%;
        overflow-x: auto;
        display: block;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    * {
        max-width: 100%;
        word-wrap: break-word;
    }
    
    /* Prevent any horizontal scroll */
    body {
        overflow-x: hidden !important;
        max-width: 100vw;
    }
    
    html {
        overflow-x: hidden !important;
    }
    
    /* Ensure container doesn't overflow on mobile */
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Ensure all sections don't overflow */
    .section,
    .hero,
    .hero-small {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    /* Hero section adjustments */
    .hero {
        padding: 80px 15px;
        min-height: 500px;
    }
    
    .nav-links a {
        word-break: keep-all;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .copyright {
        font-size: 0.85rem;
        padding: 0 10px;
        word-break: break-word;
    }
    
    .footer-logo p {
        font-size: 0.9rem;
        word-break: break-word;
    }
    
    .story-text,
    .intro-text,
    .section-intro {
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .quote-box blockquote p {
        font-size: 1rem;
        line-height: 1.6;
        word-break: break-word;
    }
    
    .organizer-intro h2 {
        font-size: 1.8rem;
        word-break: break-word;
    }
    
    .instagram-link,
    a {
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Ensure email and URLs break properly */
    a[href^="mailto:"],
    a[href^="http://"],
    a[href^="https://"] {
        word-break: break-all;
    }
    
    /* Additional text wrapping for all elements */
    .feature-card p,
    .lecture-content p,
    .component-card p,
    .info-highlight p,
    .travel-card p,
    .facility-card p {
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    /* Ensure all headings wrap properly */
    .feature-card h3,
    .lecture-header h3,
    .component-card h3,
    .info-highlight h3,
    .travel-card h3,
    .facility-card h3,
    .achievement-card h3,
    .sponsor-card h3 {
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    /* Program Toggle - Mobile */
    .program-toggle {
        flex-direction: column;
        gap: 0.8rem;
        margin: 1.5rem 0 2rem 0;
    }
    
    .toggle-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    /* Program Components - Mobile */
    .program-components {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .component-card {
        padding: 1.8rem;
    }
    
    .component-icon {
        font-size: 2.5rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .component-card {
        overflow: hidden;
        position: relative;
    }
    
    .component-card h3 {
        font-size: 1.4rem;
    }
    
    .component-list li {
        font-size: 0.95rem;
        padding: 0.5rem 0;
        padding-left: 1.8rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    /* Theme Grid - Mobile */
    .theme-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .theme-item {
        padding: 1.2rem;
        overflow: hidden;
    }
    
    .theme-emoji {
        font-size: 2rem;
        display: block;
        text-align: center;
    }
    
    /* Timeline - Mobile */
    .timeline {
        max-width: 100%;
        overflow-x: hidden;
        padding-left: 30px;
    }
    
    .timeline:before {
        left: 0;
        bottom: 150px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2.5rem;
        margin-left: 0;
    }
    
    .timeline-time {
        min-width: auto;
        width: fit-content;
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
        margin-left: 0;
    }
    
    .timeline-content {
        padding: 1.5rem;
        margin-left: 30px;
        position: relative;
    }
    
    .timeline-badge {
        left: -45px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        border-width: 2px;
    }
    
    .timeline-content h3 {
        font-size: 1.3rem;
    }
    
    .timeline-subtitle {
        font-size: 0.95rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
    
    .timeline-note {
        padding: 1.5rem;
        overflow: hidden;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .timeline-note p {
        font-size: 1rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    /* Infographic - Mobile */
    .infographic-main,
    .infographic-hero {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .infographic-big-stat {
        padding: 2.5rem 1.5rem;
        max-width: 100%;
        position: relative;
        overflow: hidden;
    }
    
    .infographic-big-stat::before {
        display: none;
    }
    
    .big-number {
        font-size: 3.5rem;
        word-break: break-word;
        max-width: 100%;
    }
    
    .big-label {
        font-size: 1.5rem;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    .big-sublabel {
        font-size: 1rem;
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .infographic-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .info-stat-card {
        padding: 2rem 1.5rem;
        overflow: hidden;
        max-width: 100%;
    }
    
    .info-stat-card::before {
        display: none;
    }
    
    .info-stat-icon {
        font-size: 3rem;
        display: block;
        text-align: center;
    }
    
    .info-stat-number {
        font-size: 2.5rem;
        word-break: break-word;
    }
    
    .info-stat-label {
        font-size: 1rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .stats-source {
        padding: 1.5rem;
        overflow: hidden;
        max-width: 100%;
    }
    
    .stats-source p {
        font-size: 0.95rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    /* Footer Sponsors - Mobile */
    .footer-sponsor-logos {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-sponsor-logo {
        height: 40px;
        max-width: 100px;
        object-fit: contain;
    }
    
    /* Sponsors Page - Mobile */
    .sponsors-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
    }
    
    .sponsor-card {
        padding: 2rem 1.5rem;
        overflow: hidden;
        max-width: 100%;
    }
    
    .sponsor-logo {
        height: 80px;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .sponsor-logo img {
        max-width: 100%;
        max-height: 80px;
        object-fit: contain;
    }
    
    .sponsor-card h3 {
        font-size: 1.4rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .sponsor-needs {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .need-card {
        padding: 2rem 1.5rem;
        overflow: hidden;
        max-width: 100%;
    }
    
    .need-icon {
        font-size: 3rem;
        display: block;
        text-align: center;
    }
    
    .need-card h3 {
        font-size: 1.5rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .sponsor-cta {
        padding: 2.5rem 1.5rem;
        overflow: hidden;
        max-width: 100%;
    }
    
    .sponsor-cta h3 {
        font-size: 1.6rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .sponsor-cta p {
        font-size: 1.05rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .sponsor-cta .cta-button-large {
        padding: 12px 30px;
        font-size: 1.05rem;
        max-width: 100%;
        overflow: hidden;
    }
}

/* Ensure all grids and flexboxes stay within bounds */
@media (max-width: 768px) {
    .features,
    .lectures-grid,
    .contact-grid,
    .visit-info,
    .achievements-grid,
    .sponsors-grid,
    .program-components,
    .infographic-grid,
    .theme-grid,
    .travel-grid,
    .facilities-grid,
    .location-main {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Ensure all cards stay within bounds */
    .feature-card,
    .lecture-card,
    .contact-info,
    .info-highlight,
    .achievement-card,
    .sponsor-card,
    .component-card,
    .info-stat-card,
    .theme-item,
    .travel-card,
    .facility-card,
    .location-card,
    .need-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

/* Extra Small Screens (very small phones) */
@media (max-width: 375px) {
    body {
        overflow-x: hidden !important;
    }
    
    .event-details {
        font-size: 0.65rem;
        letter-spacing: 0.03rem;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .date-large {
        font-size: 3rem;
    }
    
    .save-the-date {
        font-size: 1.2rem;
        letter-spacing: 0.15rem;
        padding: 0 10px;
    }
    
    .register-button {
        font-size: 1rem;
        padding: 14px 30px;
        margin-top: 1rem;
        width: 95%;
        max-width: 350px;
    }
    
    h1 {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    h2 {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    .section {
        padding: 50px 10px;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .nav-logo {
        height: 45px;
    }
    
    .big-number {
        font-size: 3rem;
    }
    
    .big-label {
        font-size: 1.3rem;
        padding: 0 10px;
    }
    
    .feature-card,
    .lecture-card,
    .info-highlight,
    .achievement-card,
    .sponsor-card,
    .component-card,
    .travel-card,
    .facility-card {
        padding: 1.5rem 1rem;
        overflow: hidden;
        position: relative;
        max-width: 100%;
    }
    
    /* Hide decorative pseudo-elements that might overflow */
    .feature-card::before,
    .achievement-card::before,
    .info-highlight::after {
        display: none !important;
    }
    
    .hero-small h1 {
        font-size: 1.6rem;
        padding: 0 10px;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-small p {
        padding: 0 10px;
        word-break: break-word;
        overflow-wrap: break-word;
        font-size: 0.95rem;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline-content {
        padding: 1rem;
        margin-left: 25px;
    }
    
    .timeline-badge {
        left: -35px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
    }
    
    .icon,
    .component-icon,
    .facility-icon,
    .travel-icon,
    .theme-emoji,
    .achievement-icon,
    .need-icon,
    .info-stat-icon {
        font-size: 2rem !important;
    }
    
    /* Ensure all text stays within bounds */
    p, span, div, a, li {
        word-break: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
}

