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

:root {
    --primary-color: #25004c;
    --secondary-color: #5a2bd0;
    --accent-color: #71dc97;
    --text-color: #333;
    --bg-light: #f8f8f8;
    --border-color: #ddd;
    --white: #fff;
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: var(--primary-color);
    color: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-logo {
    height: 34px;
    width: auto;
    display: block;
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.hero {
    background: var(--primary-color);
    color: var(--white);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 80px 20px 20px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 0, 76, 0.3);
    z-index: 1;
}

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

.hero-branding {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
}

.hero-motto {
    font-size: 3rem;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 4px;
    margin: 0;
    color: var(--accent-color);
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    min-width: 70px;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 2rem;
}

.cta-button:hover {
    background: #8ef0b0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(113, 220, 151, 0.3);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #25004c 0%, #3d0075 100%);
    color: white;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.about-intro .lead {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #e8e8e8;
    margin-bottom: 1.5rem;
}

.about-intro .lead-question {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 1.5rem;
}

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

.about-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(113, 220, 151, 0.2);
    transition: all 0.3s;
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-weight: 600;
}

.about-card p {
    line-height: 1.7;
    color: #d8d8d8;
}

.about-target {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid var(--accent-color);
}

.about-target h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.about-target p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e8e8e8;
    margin-bottom: 1rem;
}

.about-target .target-tagline {
    font-style: italic;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.about-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 2rem;
}

.about-cta h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.about-cta p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e8e8e8;
    margin-bottom: 2rem;
}

.about-cta .cta-button {
    font-size: 1.3rem;
    padding: 1.5rem 3.5rem;
    box-shadow: 0 8px 20px rgba(113, 220, 151, 0.4);
}

.about-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(113, 220, 151, 0.6);
}

section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.speakers {
    background: var(--bg-light);
}

.speakers-slider {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2rem 0;
    cursor: grab;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) var(--bg-light);
}

.speakers-slider::-webkit-scrollbar {
    height: 8px;
}

.speakers-slider::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 10px;
}

.speakers-slider::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
}

.speakers-slider::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.speakers-slider:active {
    cursor: grabbing;
}

.speakers-track {
    display: flex;
    gap: 2rem;
    width: max-content;
}

.speaker-card {
    width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.speaker-image-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.speaker-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    background: var(--bg-light);
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.speaker-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.speaker-card p {
    font-size: 0.9rem;
    color: #666;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.speaker-card .session-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0.5rem 0;
    font-style: italic;
}

.keynote-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.keynote-speaker {
    border: 2px solid var(--accent-color);
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
}

.keynote-speaker:hover {
    border-color: var(--secondary-color);
}

/* Past Organisations Section */
.past-organisations {
    background: linear-gradient(135deg, #25004c 0%, #3d0075 100%);
    color: white;
}

.past-organisations h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: var(--accent-color);
}

.organisations-slider-container {
    overflow: hidden;
    position: relative;
}

.organisations-slider {
    display: flex;
    gap: 4rem;
    animation: scroll-logos 15s linear infinite;
}

.organisations-slider:hover {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.organisation-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
}

.organisation-logo img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.organisation-logo:hover img {
    opacity: 1;
}

/* Tickets Section */
.tickets {
    background: #f8f9fa;
}

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

.ticket-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.ticket-card.highlight {
    border-color: var(--accent-color);
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(113, 220, 151, 0.2);
}

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

.ticket-card.highlight:hover {
    transform: scale(1.05) translateY(-5px);
}

.ticket-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.ticket-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.ticket-price {
    margin: 2rem 0;
    text-align: center;
}

.price-original {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.price-current {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
}

.ticket-features {
    list-style: none;
    margin-top: 2rem;
}

.ticket-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.ticket-features i {
    color: var(--accent-color);
    margin-top: 3px;
}

.ticket-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.ticket-cta {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.ticket-cta .cta-button {
    font-size: 1.3rem;
    padding: 1.5rem 3.5rem;
    box-shadow: 0 8px 20px rgba(113, 220, 151, 0.4);
    animation: pulse 2s infinite;
}

.ticket-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(113, 220, 151, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(113, 220, 151, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(113, 220, 151, 0.6);
    }
}

.programm {
    background: var(--bg-light);
}

.programm-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1rem 2rem;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-button.active {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.tab-button:hover {
    border-color: var(--accent-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s;
}

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

.programm-table {
    width: 100%;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.programm-table td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.programm-table tr:last-child td {
    border-bottom: none;
}

.programm-table .time {
    font-weight: 600;
    color: var(--accent-color);
    white-space: nowrap;
    width: 120px;
}

.programm-table tr.highlight {
    background: #fff5ed;
}

/* Target Audience Section */
.target-audience {
    background: linear-gradient(135deg, #25004c 0%, #3d0075 100%);
    color: white;
}

.target-audience h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
}

.audience-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.audience-list {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e8e8e8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.audience-tagline {
    font-style: italic;
    color: var(--accent-color);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.audience-content .cta-button {
    margin-top: 1rem;
}

/* FAQ Section */
.faq {
    background: #f8f9fa;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--accent-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.testimonials {
    background: var(--primary-color);
    color: var(--white);
    overflow: hidden;
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials-slider {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    cursor: grab;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) rgba(255, 255, 255, 0.1);
}

.testimonials-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonials-slider::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.testimonials-slider::-webkit-scrollbar-thumb:hover {
    background: #8ef0b0;
}

.testimonials-slider:active {
    cursor: grabbing;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    width: max-content;
}

.testimonial-card {
    width: 350px;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.testimonial-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-style: italic;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-author {
    font-weight: 600;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.testimonial-link:hover {
    color: #8ef0b0;
}

.anreise {
    padding: 4rem 0;
    background: var(--bg-light);
}

.anreise-header {
    text-align: center;
    margin-bottom: 2rem;
}

.anreise-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.location-address {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.anreise-map {
    width: 100%;
    margin: 2rem 0;
}

.map-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.anreise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.anreise-col h4 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.transport-list,
.parking-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.transport-list li,
.parking-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.transport-list i,
.parking-list i {
    color: var(--secondary-color);
    width: 20px;
}

.anreise-links {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.map-link:hover {
    background: var(--primary-color);
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-section h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-section-logo {
    display: block;
    margin-bottom: 1.5rem;
}

.footer-section-logo .footer-logo {
    height: 50px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-logo-big {
    height: 80px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section-logo:hover .footer-logo .footer-logo-big {
    opacity: 1;
}

.footer-social {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-social i {
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links .separator {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom .copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.legal-page {
    padding: 6rem 0 4rem;
    background: var(--white);
    min-height: 100vh;
}

.legal-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.legal-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.legal-content h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: var(--accent-color);
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 5px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--accent-color);
}

.contact-column p {
    margin-bottom: 0.5rem;
}

.back-link {
    margin-top: 3rem;
    text-align: center;
}

.back-link a {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.back-link a:hover {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-logo {
        max-width: 60%;
        height: auto;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        background: var(--primary-color);
        width: 100%;
        padding: 2rem 0;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero-branding {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-logo {
        max-width: 250px;
    }

    .hero-motto {
        font-size: 2.5rem;
    }

    .countdown-value {
        font-size: 1.5rem;
        min-width: 50px;
    }

    .countdown-label {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about h2 {
        font-size: 1.75rem;
        word-wrap: break-word;
    }

    .speaker-card {
        width: 250px;
    }

    .tickets-grid {
        grid-template-columns: 1fr;
    }

    .ticket-card.highlight {
        transform: scale(1);
    }

    .testimonial-card {
        width: 300px;
    }

    .programm-table .time {
        width: 85px;
        font-size: 0.85rem;
    }

    .programm-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .anreise-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .anreise-header h3 {
        font-size: 1.5rem;
    }

    .anreise-col h4 {
        font-size: 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-section-logo .footer-logo {
        height: 40px;
    }

    .footer-section-logo .footer-logo-big {
        height: 60px;
    }

    .legal-page {
        padding: 5rem 0 3rem;
    }

    .legal-title {
        font-size: 2rem;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
    }

    .contact-box {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
