/* --- Global Resets and Base Styles --- */
:root {
    --primary-purple: #7B00FF;
    --light-cyan: #6CEAFF;
    --dark-purple: #6B01D3;
    --dark-bg: #1A1A1A;
    --light-card-bg: #F5F5F5; /* For Organizatorzy box & NEW Cookie Banner */
    --medium-grey-accent: #DEDEEO;
    --black: #000000;
    --white: #FFFFFF;
    --text-light-grey: #D0C8E0; /* Lighter grey for text on purple */
    --font-syne: 'Syne', sans-serif;
    --icon-bubble-bg: #262834;
    --nesc-orange: #FF7043;
    --cloudity-grey: #78909C;
    --form-input-border: #E0E0E0;
    --form-label-color: #333333;
    --form-placeholder-color: #999999;
    --header-height: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-syne);
    background-color: var(--dark-bg);
    color: var(--white);
    overflow-x: hidden;
    padding-top: var(--header-height);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-syne);
    font-weight: 700; /* Bold */
}

/* --- Typography --- */
.section-title {
    font-size: clamp(38px, 6vw, 60px);
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--white);
    text-align: center;
    line-height: 1.2;
}
p { font-size: 16px; line-height: 1.6; color: var(--text-light-grey); font-weight: 400; }
.text-purple { color: var(--primary-purple); }

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
}
.btn:hover {
    transform: scale(1.05);
}

.btn-primary {
    background-color: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
}
.btn-primary:hover {
    background-color: var(--dark-purple);
    border-color: var(--dark-purple);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--dark-bg);
    border: 2px solid var(--medium-grey-accent);
}
.btn-outline-dark:hover {
    background-color: var(--medium-grey-accent);
    color: var(--dark-bg);
    border-color: var(--medium-grey-accent);
}

.btn-outline-hero {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 700;
    font-size: clamp(15px, 2vw, 18px);
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
}
.btn-outline-hero:hover {
    background-color: var(--white);
    color: var(--dark-bg);
    border-color: var(--white);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-purple);
    border-color: var(--white);
}
.btn-outline-white .arrow {
    color: var(--white);
    transition: color 0.3s ease;
}
.btn-outline-white:hover .arrow {
    color: var(--primary-purple);
}

/* --- Header Navigation --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-bg);
    z-index: 1000;
    padding: 0;
    height: var(--header-height);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}
.nav-logo a {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
}
.nav-logo a:hover {
    color: var(--primary-purple);
}
.nav-links {
    display: flex;
    align-items: center;
}
.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-right: 25px;
    font-size: 16px;
    font-weight: 500;
}
.nav-links a:last-child {
    margin-right: 0;
}
.nav-links a:hover {
    color: var(--primary-purple);
}
.nav-links .nav-header-register-btn { /* Main register button in desktop nav */
    padding: 8px 22px;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    color: var(--white) !important;
}

.nav-links .nav-header-register-btn:hover {
    color: var(--white) !important;
    background-color: var(--dark-purple);
    border-color: var(--dark-purple);
}

.mobile-nav-actions { /* Container for mobile-specific buttons */
    display: none; /* Hidden by default, shown in mobile MQ */
    align-items: center;
    gap: 10px;
}

.nav-header-register-btn-mobile { /* Specific class for mobile top button */
    display: none; /* Hidden by default, enabled in mobile MQ */
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 700;
    margin-left: auto; /* Pushes it to the right of logo, before toggle if both shown */
}
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}
.nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 10px;
    transition: all 0.3s linear;
}

/* --- Hero Section --- */
.hero {
    padding: 40px 20px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    background-color: var(--icon-bubble-bg);
    border-radius: 20px;
}
.hero-top-bar { display: flex; justify-content: space-between; align-items: center; width: 100%; margin-bottom: clamp(20px, 5vh, 40px); }
.hero-top-bar .event-tag {
    color: var(--light-cyan);
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 700;
    text-transform: uppercase;
}
.hero-main-content { display: flex; justify-content: space-between; align-items: center; gap: clamp(20px, 4vw, 50px); }
.hero-text-content { flex: 1.1; max-width: 580px; }
.hero-text-content h1 { font-size: clamp(40px, 8vw, 86px); line-height: 1.05; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.hero-text-content .subtitle { font-size: clamp(15px, 2.2vw, 18px); color: var(--text-light-grey); margin-bottom: 20px; max-width: 480px; font-weight: 400; }
.hero-text-content .hero-event-date {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    color: var(--white);
    margin-top: 10px;
    margin-bottom: 30px;
}
.hero-image-area { flex: 1; display: flex; justify-content: center; align-items: center; position: relative; min-width: 280px; }
.hero-image-area img { max-width: 100%; width: clamp(280px, 45vw, 580px); height: auto; border-radius: 10px; display: block; }
/* Decorative icons removed as per design, if needed re-add .hero-decorative-icon styles */

/* --- Info Boxes Section --- */
.info-boxes-section {
    display: flex;
    gap: 30px;
    padding: 40px 0;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 60px auto 0 auto;
}
.info-box {
    background-color: var(--primary-purple);
    padding: 30px 35px;
    border-radius: 20px;
    color: var(--white);
    display: flex;
    flex-direction: column;
}
.prelegenci-box {
    flex: 2;
    min-width: 300px;
}
.right-column-info-boxes {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 300px;
}
.organizers-box {
    background-color: var(--icon-bubble-bg);
    padding: 30px 35px;
    border-radius: 20px;
    border: 2px solid var(--primary-purple);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    height: 100%;
}
.organizers-box h3 {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    display: flex;
    align-items: center;
    text-align: center;
}
.organizers-box .organizer-logos-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: column;
}
.organizer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-basis: auto;
    min-width: 120px;
}

/* --- Under @media (max-width: 992px) --- */
@media (max-width: 992px) {
    .organizers-box .organizer-logos-text { 
        gap: 25px; 
    }
}

.info-box h3 {
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    color: var(--white);
}
.prelegenci-box .new-arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--white);
    border-radius: 50%;
    color: var(--primary-purple);
    font-size: 22px;
    font-weight: bold;
    margin-right: 12px;
    line-height: 1;
}
.info-box p {
    font-size: clamp(15px, 2vw, 16px);
    line-height: 1.65;
    color: var(--text-light-grey);
    margin-bottom: 20px;
    flex-grow: 1;
}
.info-box p strong {
    font-weight: 700;
    color: var(--white);
}
.owydarzeniu-box {
    background: var(--icon-bubble-bg);
    border: 2px solid var(--primary-purple);
}
.owydarzeniu-box h3 { color: var(--white); }
.owydarzeniu-box p { color: var(--text-light-grey); }
.owydarzeniu-box p strong { color: var(--white); }
.speaker-avatars {
    margin-top: auto;
    margin-bottom: 25px;
}
.speaker-avatars img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: -15px;
    border: 3px solid var(--primary-purple);
    box-shadow: 0 0 0 2px var(--white);
    object-fit: cover;
}
.prelegenci-box .btn-outline-white {
    align-self: flex-start;
}

.organizer-logo-img {
    max-height: 45px;
    max-width: 120px;
    object-fit: contain;
    margin-bottom: 8px;
}
.organizer-url {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light-grey);
    text-decoration: none;
    word-break: break-all;
}
.organizer-url:hover {
    color: var(--light-cyan);
    text-decoration: underline;
}
.logo-grayscale {
    filter: grayscale(100%);
}

/* --- Separator Text --- */
.separator-text {
    text-align: center;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
}
.separator-text h2 {
    font-size: clamp(40px, 7vw, 72px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.1;
}
.date-location-bar {
    text-align: center;
    padding-bottom: 30px;
}
.date-location-content {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-purple) 0%, #58003A 100%);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 35px;
    font-family: var(--font-syne);
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none; /* Ensure no underline for the link */
}

/* --- Agenda Section --- */
.agenda-section {
    margin-top: 50px;
}
.agenda-section .container {
    background-color: var(--icon-bubble-bg);
    padding: 30px;
    border-radius: 20px;
}
.agenda-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 40px 30px;
    margin-top: 30px;
}
.agenda-time {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    color: var(--white);
}
.agenda-item h4 {
    font-size: clamp(20px, 3.5vw, 24px);
    font-weight: 700;
    color: var(--light-cyan);
    margin-bottom: 8px;
}
.agenda-item .speaker {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--white);
    font-weight: 400;
    margin-bottom: 8px;
}
.agenda-item p {
    font-size: clamp(14px, 2vw, 15px);
    color: var(--text-light-grey);
    line-height: 1.6;
}
.agenda-divider { /* This class is not used in HTML, keeping for potential future use if structure changes */
    display: none;
}

/* --- Prelegenci (Speakers) Cards Section --- */
.speakers-section {
    margin-top: 60px;
}
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creates two columns */
    gap: 30px;
    margin-top: 30px;
}
.speaker-card {
    background-color: var(--light-card-bg); /* Light grey background from Colors.pdf */
    border-radius: 20px; /* Rounded corners as per Landing.pdf */
    display: flex;
    overflow: hidden;
    min-height: 300px; /* Minimum height for the card */
    transition: transform 0.2s ease;
}
.speaker-card:hover {
    transform: scale(1.03); /* Slight zoom on hover */
}
.speaker-info-content {
    flex-basis: 55%; /* Text content takes up 55% of the card width */
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Aligns content to the top */
    color: var(--dark-bg); /* Dark text color for readability on light background */
}
.speaker-info-content h4 {
    font-family: var(--font-syne); /* Syne font from Typography.pdf */
    font-size: clamp(22px, 3vw, 28px); /* Responsive font size for names */
    font-weight: 700; /* Bold weight for names */
    color: var(--dark-bg);
    margin-bottom: 10px;
}
.speaker-info-content p {
    font-family: var(--font-syne); /* Syne font */
    font-size: clamp(14px, 1.8vw, 15px); /* Body Small size from Typography.pdf */
    color: var(--dark-bg);
    line-height: 1.5; /* Consistent line height for readability */
}
.speaker-social-link {
    display: inline-block;
    margin-top: 15px; /* Space above the social icon */
    align-self: flex-start; /* Aligns icon to the left in LTR */
}
.social-icon-speaker { /* Styles for the LinkedIn icon */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--dark-bg);
    color: var(--white);
    border-radius: 4px; /* Slightly rounded square icon */
    text-decoration: none;
    font-family: var(--font-syne);
    font-size: 14px;
    font-weight: 700; /* Bold 'in' */
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.social-icon-speaker:hover {
    background-color: var(--primary-purple); /* Purple hover state */
    transform: scale(1.1);
}
.speaker-card .speaker-image-wrapper {
    flex-basis: 45%; /* Image takes up 45% of the card width */
    background-color: #CCCCCC; /* Fallback color */
    min-height: 250px; /* Ensure a minimum height for the image wrapper */
}
.speaker-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the area well */
    object-position: center top; /* Prioritize top of the image, good for faces */
    display: block;
}

/* Responsive adjustments for speaker cards */
@media (max-width: 992px) {
    .speakers-grid {
        grid-template-columns: 1fr; /* Single column on smaller tablets */
        gap: 25px;
    }
}
@media (max-width: 768px) { /* Tablet and smaller */
    .speaker-info-content {
        text-align: center; /* Center text content on tablets */
    }
    .speaker-social-link {
        align-self: center; /* Center social icon on tablets */
    }
    .speaker-card {
        min-height: auto; /* Adjust min-height */
        flex-direction: column; /* Stack image and text vertically */
    }
    .speaker-card .speaker-image-wrapper {
         min-height: 320px; /* Taller photos on mobile */
         max-height: 360px;
    }
    .speaker-card .speaker-info-content {
        padding: 20px;
    }
    .speaker-info-content h4 { font-size: clamp(20px, 3.5vw, 24px); }
}

        /* --- Why Attend Section --- */
        .why-attend-section {
            background-color: var(--black);
            padding-top: 60px;
            padding-bottom: 60px;
        }
        .why-attend-subtitle {
            text-align: center;
            color: var(--primary-purple);
            font-size: clamp(16px, 2.5vw, 20px);
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 40px;
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

/* --- ADD THESE NEW STYLES for "DLACZEGO WARTO BYĆ Z NAMI?" section --- */
.features-grid { /* This class already exists, ensure it styles the grid container appropriately */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-tile-styled {
    background-color: var(--icon-bubble-bg);
    padding: 30px 25px; /* Adjusted padding */
    border-radius: 20px;
    position: relative; /* For absolute positioning of the number */
    overflow: hidden; /* To cut off the number if it extends beyond borders */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top */
    min-height: 240px; /* Ensure tiles have some consistent height */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}
.feature-tile-styled:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


.feature-tile-styled .tile-bg-number {
    position: absolute;
    bottom: -35px; /* Common vertical position */
    font-family: var(--font-syne);
    font-size: clamp(120px, 20vw, 170px);
    font-weight: 800;
    line-height: 0.85;
    background: linear-gradient(to top right, var(--dark-purple) 5%, var(--primary-purple) 95%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 0.45; /* Current opacity, adjust if needed */
    z-index: 1;
    pointer-events: none;
    user-select: none;
    transform: none; /* No rotation */
}

/* For ODD tiles (1st, 3rd, 5th, etc.): Number on the bottom-right */
.feature-tile-styled:nth-child(odd) .tile-bg-number {
    right: -25px; /* Position from the right edge */
    left: auto;   /* Ensure 'left' is not interfering */
}

/* For EVEN tiles (2nd, 4th, 6th, etc.): Number on the bottom-left */
.feature-tile-styled:nth-child(even) .tile-bg-number {
    left: -25px;  /* Position from the left edge */
    right: auto;  /* Ensure 'right' is not interfering */
}

.feature-tile-styled .tile-content {
    position: relative;
    z-index: 2; /* Above the background number */
}

.feature-tile-styled .tile-content h4 {
    font-size: clamp(18px, 2.6vw, 20px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-tile-styled .tile-content p {
    font-size: clamp(14px, 1.8vw, 15px);
    color: var(--text-light-grey);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive adjustments for the new tiles if needed, though auto-fit grid should handle columns well */
@media (max-width: 768px) {
    .feature-tile-styled {
        min-height: 220px; /* Slightly adjust min-height for tablets */
        padding: 25px 20px;
    }
    .feature-tile-styled .tile-bg-number {
        font-size: clamp(110px, 22vw, 160px);
        bottom: -30px;
    }
    .feature-tile-styled:nth-child(odd) .tile-bg-number { right: -20px; }
    .feature-tile-styled:nth-child(even) .tile-bg-number { left: -20px; }
}

@media (max-width: 576px) {
    .feature-tile-styled {
        min-height: 200px; /* Adjust for smaller mobile */
    }
     .feature-tile-styled .tile-bg-number {
        font-size: clamp(100px, 25vw, 140px); /* Make number a bit smaller on smallest screens */
        bottom: -25px;
    }
    .feature-tile-styled:nth-child(odd) .tile-bg-number { right: -15px; }
    .feature-tile-styled:nth-child(even) .tile-bg-number { left: -15px; }

    .feature-tile-styled .tile-content h4 {
        font-size: clamp(17px, 5vw, 19px); /* Adjust heading for small screens */
    }
    .feature-tile-styled .tile-content p {
        font-size: clamp(13px, 3.5vw, 14px); /* Adjust paragraph for small screens */
    }
}
/* --- END OF NEW STYLES --- */

        /* --- Discussion Panel Section --- */
        .discussion-panel-container {
            width: 90%;
            max-width: 1200px;
            margin: 60px auto 40px auto;
        }
        .discussion-panel-header {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        .panel-discussion-title {
            text-align: left;
            font-size: clamp(48px, 9vw, 90px);
            font-weight: 700;
            margin-bottom: 0;
            color: var(--white);
            line-height: 1.1;
        }
        .panel-nav-arrows {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 20px;
        }
        .panel-nav-arrows button {
            background-color: transparent;
            border: 1px solid var(--white);
            color: var(--white);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            transition: background-color 0.3s, color 0.3s, border-color 0.3s, opacity 0.3s, transform 0.2s ease;
            margin-left: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }
        .panel-nav-arrows button:first-child {
            margin-left: 0;
        }
         .panel-nav-arrows button + button {
            margin-left: 10px;
        }
        .panel-nav-arrows button:hover {
            transform: scale(1.1);
        }
        .panel-nav-arrows button.prev {
            border-color: var(--medium-grey-accent);
            color: var(--medium-grey-accent);
        }
        .panel-nav-arrows button.prev:hover {
            background-color: rgba(255,255,255,0.1);
            border-color: var(--white);
            color: var(--white);
        }
        .panel-nav-arrows button.next {
            background-color: var(--light-card-bg);
            border-color: var(--light-card-bg);
            color: var(--dark-bg);
        }
        .panel-nav-arrows button.next:hover {
            opacity: 0.8;
        }
        .discussion-panel-carousel {
            position: relative;
            width: 100%;
            min-height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }
        .panel-card-slider {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            width: auto;
        }
        .panel-card {
            width: 300px;
            min-height: 360px;
            padding: 25px 30px;
            border-radius: 24px;
            display: flex;
            flex-direction: column;
            flex-shrink: 0;
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease, box-shadow 0.4s ease;
            opacity: 0.6;
            transform: scale(0.85);
            box-shadow: 0 8px 15px rgba(0,0,0,0.15);
            position: relative;
        }
        .panel-card:not(:first-child) {
            margin-left: 20px;
        }
        .panel-card h3 {
            font-family: var(--font-syne);
            font-size: clamp(18px, 2.5vw, 22px);
            font-weight: 700;
            margin-bottom: 12px;
        }
        .panel-card p {
            font-family: var(--font-syne);
            font-size: clamp(14px, 2vw, 15px);
            line-height: 1.65;
            margin-bottom: 25px;
            flex-grow: 1;
        }
        .panel-speaker-info {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: auto;
        }
        .panel-speaker-info img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid rgba(255,255,255,0.3);
        }
        .panel-speaker-info div {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        .panel-speaker-info .speaker-name {
            font-family: var(--font-syne);
            display: block;
            font-size: clamp(14px, 2vw, 16px);
            font-weight: 500;
        }
        .panel-card-prev {
            background-color: #2A2A2A;
            color: var(--text-light-grey);
            transform: scale(0.85);
            opacity: 0.7;
            z-index: 5;
        }
        .panel-card-prev:hover { transform: scale(0.88); }
        .panel-card-prev h3,
        .panel-card-prev .speaker-name {
            color: var(--white);
        }
        .panel-card-prev p {
            color: var(--text-light-grey);
        }
        .panel-card-prev .panel-speaker-info img {
            border-color: rgba(255,255,255,0.2);
        }
        .panel-card-active {
            background-color: var(--primary-purple);
            color: var(--white);
            transform: scale(1);
            opacity: 1;
            z-index: 10;
            box-shadow: 0 12px 25px rgba(123, 0, 255, 0.3), 0 0 0 3px rgba(123,0,255,0.3);
        }
         .panel-card-active:hover { transform: scale(1.03); }
        .panel-card-active h3,
        .panel-card-active p,
        .panel-card-active .speaker-name {
            color: var(--white);
        }
        .panel-card-active .panel-speaker-info img {
            border-color: rgba(255,255,255,0.5);
        }
        .panel-card-next {
            background-color: var(--light-card-bg);
            color: var(--dark-bg);
            transform: scale(0.85);
            opacity: 0.7;
            z-index: 5;
        }
        .panel-card-next:hover { transform: scale(0.88); }
        .panel-card-next h3,
        .panel-card-next .speaker-name {
            color: var(--black);
        }
        .panel-card-next p {
            color: #333333;
        }
        .panel-card-next .panel-speaker-info img {
            border-color: rgba(0,0,0,0.1);
        }
        .panel-card:not(.panel-card-active):not(.panel-card-prev):not(.panel-card-next) {
            opacity: 0;
            transform: scale(0.7);
            position: absolute;
            z-index: 1;
        }

        /* --- Registration Countdown Section --- */
        .registration-countdown-section {
            padding-top: 60px;
            padding-bottom: 30px;
            background-color: var(--dark-bg);
        }
        .registration-header {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            margin-bottom: 30px;
            gap: 10px;
        }
        .registration-header .section-title-display {
            font-family: var(--font-syne);
            font-size: clamp(48px, 9vw, 90px);
            font-weight: 700;
            color: var(--white);
            line-height: 1.1;
            margin: 0;
            text-align: center;
        }
        .registration-header .registration-subtitle {
            font-family: var(--font-syne);
            font-size: clamp(15px, 2vw, 18px);
            font-weight: 400;
            color: var(--white);
            line-height: 1.6;
            max-width: 550px;
            margin: 0;
        }
        .countdown-banner { background-color: #252525; border-radius: 25px; padding: 30px 40px; display: flex; justify-content: space-between; align-items: center; gap: 25px; flex-wrap: wrap;}
        .countdown-text-content { display: flex; flex-direction: column; align-items: flex-start; flex-grow: 1; }
        .registration-ends-label { font-family: var(--font-syne); font-size: clamp(13px, 1.8vw, 16px); font-weight: 400; color: var(--text-light-grey); margin-bottom: 15px; }
        .countdown-timer-display {
            display: flex;
            align-items: baseline;
            gap: clamp(15px, 3vw, 25px);
            flex-wrap: wrap;
        }
        .time-segment {
            display: flex;
            align-items: baseline;
        }
        .countdown-timer-display .time-value {
            font-family: var(--font-syne);
            font-size: clamp(60px, 12vw, 120px);
            font-weight: 700;
            color: var(--white);
            line-height: 1;
        }
        .countdown-timer-display .time-unit-label {
            font-family: var(--font-syne);
            font-size: clamp(14px, 2.5vw, 18px);
            font-weight: 400;
            color: var(--text-light-grey);
            text-transform: lowercase;
            margin-left: 8px;
        }
        .countdown-timer-display .time-label { display: none; }
        .countdown-timer-display .time-separator { display: none; }
        .countdown-graphic img { max-width: 100%; height: auto; max-height: clamp(100px, 15vh, 150px); flex-shrink: 0;}

        /* --- Registration Form Section --- */
        .registration-form-section {
            padding-top: 40px;
        }
        .registration-form-section h3 {
            font-family: var(--font-syne);
            font-size: clamp(34px, 5vw, 54px);
            font-weight: 700;
            color: var(--white);
            text-align: center;
            margin-bottom: 30px;
        }
        .form-wrapper-new {
            background-color: var(--white);
            padding: 30px;
            border-radius: 20px;
            max-width: 600px;
            margin: 0 auto;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        #contactFormNew {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group {
            text-align: left;
        }
        .form-group label {
            display: block;
            font-family: var(--font-syne);
            font-size: 14px;
            font-weight: 500;
            color: var(--form-label-color);
            margin-bottom: 8px;
        }
        .form-group label .required-asterisk {
            color: var(--primary-purple);
            font-weight: 700;
        }
        .form-group input[type="text"],
        .form-group input[type="email"] {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid var(--form-input-border);
            background-color: var(--white);
            color: var(--dark-bg);
            font-size: 16px;
            font-family: var(--font-syne);
        }
        .form-group input[type="text"]::placeholder,
        .form-group input[type="email"]::placeholder {
            color: var(--form-placeholder-color);
            font-weight: 400;
        }
        .form-group input[type="text"]:focus,
        .form-group input[type="email"]:focus {
            outline: none;
            border-color: var(--primary-purple);
            box-shadow: 0 0 0 2px rgba(123, 0, 255, 0.2);
        }
        .form-group-checkbox {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-group-checkbox input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: var(--primary-purple);
            cursor: pointer;
        }
        .form-group-checkbox .checkbox-label {
            font-size: 14px;
            font-weight: 400;
            color: var(--form-label-color);
            margin-bottom: 0;
            cursor: pointer;
        }
        #contactFormNew .btn-primary.btn-full-width {
            width: 100%;
            padding: 15px;
            font-size: 18px;
            font-weight: 700;
        }
        #formMessageNew {
            color: var(--primary-purple);
            font-weight: 500;
        }
        .form-privacy-reassurance {
            font-size: 12px;
            color: var(--form-label-color);
            text-align: center;
            margin-top: -10px;
            margin-bottom: 10px;
        }
        .form-privacy-reassurance a {
            color: var(--primary-purple);
            text-decoration: underline;
        }
         .form-privacy-reassurance a:hover {
            color: var(--dark-purple);
        }

        /* --- New Contact/Footer Section Styles --- */
        .contact-footer-wrapper {
            background-color: var(--light-card-bg);
            color: var(--dark-bg);
            padding: 50px 0;
            border-radius: 25px;
            margin-top: 60px;
            margin-bottom: 30px;
        }
        .contact-footer-wrapper .container {
            max-width: 1200px;
        }
        .contact-query-section {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            align-items: flex-start;
            flex-wrap: wrap;
        }
        .contact-query-left {
            flex: 1.5;
            min-width: 300px;
        }
        .contact-query-right {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            min-width: 300px;
        }
        .section-title-footer {
            font-family: var(--font-syne);
            font-size: clamp(32px, 4.5vw, 54px);
            font-weight: 700;
            color: var(--dark-bg);
            margin-bottom: 15px;
            text-align: left;
        }
        .footer-description {
            font-family: var(--font-syne);
            font-size: clamp(15px, 2vw, 16px);
            line-height: 1.6;
            color: var(--dark-bg);
            margin-bottom: 30px;
            max-width: 500px;
        }
        .contact-details-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
            gap: 20px;
        }
        .contact-column-footer h4 {
            font-family: var(--font-syne);
            font-size: 14px;
            font-weight: 700;
            color: var(--dark-bg);
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .contact-column-footer p,
        .contact-column-footer a {
            font-family: var(--font-syne);
            font-size: clamp(14px, 2vw, 16px);
            color: var(--dark-bg);
            text-decoration: none;
            line-height: 1.7;
            margin-bottom: 5px;
            overflow-wrap: break-word;
        }
        .contact-column-footer a:hover {
            color: var(--primary-purple);
        }
        .location-item-footer {
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .location-dot-footer {
            width: 10px;
            height: 10px;
            background-color: var(--primary-purple);
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 5px;
        }
        .social-icons-footer {
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .social-icons-footer .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            background-color: var(--dark-bg);
            color: var(--white);
            border-radius: 4px;
            text-decoration: none;
            font-family: var(--font-syne);
            font-size: 13px;
            font-weight: 700;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }
        .social-icons-footer .social-icon:hover {
            background-color: var(--primary-purple);
            transform: scale(1.1);
        }
        .footer-content-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding-top: 30px;
            border-top: 1px solid #DEDEE0;
            gap: 25px;
            flex-wrap: wrap;
        }
        .footer-branding-nav {
            flex-basis: 50%;
            min-width: 250px;
        }
        .footer-branding-nav h5 {
            font-family: var(--font-syne);
            font-size: clamp(18px, 2.8vw, 22px);
            font-weight: 700;
            color: var(--dark-bg);
            margin-bottom: 15px;
        }
        .footer-nav {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 25px;
        }
        .footer-nav a {
            font-family: var(--font-syne);
            font-size: clamp(14px, 2vw, 16px);
            color: var(--dark-bg);
            text-decoration: none;
        }
        .footer-nav a:hover {
            color: var(--primary-purple);
        }
        .copyright-footer {
            font-family: var(--font-syne);
            font-size: clamp(12px, 1.8vw, 14px);
            color: #5f5f5f;
        }
        .footer-logos-privacy {
            flex-basis: 45%;
            display: flex;
            flex-direction: column;
            align-items: flex-start; /* Default for desktop */
            min-width: 250px;
        }
         .footer-company-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 30px;
            align-items: center; /* Center items vertically */
            justify-content: flex-start; /* Default for desktop */
            margin-bottom: 20px;
            width: 100%; /* Ensure it takes full width for justify-content to work as expected on mobile */
        }
        .footer-logo-item-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-width: 100px; /* Can be adjusted */
            flex-grow: 1; /* Allow items to grow and fill space */
        }
        .footer-logo-img {
            max-height: 35px;
            max-width: 110px;
            object-fit: contain;
            margin-bottom: 6px;
        }
        .footer-logo-url {
            font-size: 12px;
            font-weight: 400;
            color: var(--dark-bg);
            text-decoration: none;
            word-break: break-all;
        }
        .footer-logo-url:hover {
            color: var(--primary-purple);
            text-decoration: underline;
        }
        .privacy-policy-link-footer {
            font-family: var(--font-syne);
            font-size: clamp(12px, 1.8vw, 14px);
            color: var(--dark-bg);
            text-decoration: none;
        }
        .privacy-policy-link-footer:hover {
            color: var(--primary-purple);
        }
		.google-map-iframe {
            width: 100%;
            max-width: 450px;
            height: 300px;
            border: 0;
            border-radius: 15px;
        }

        /* --- Animations --- */
        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .scroll-animate.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Cookie Consent Banner Styles --- */
        .cookie-consent-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--light-card-bg);
            color: var(--dark-bg);
            padding: 20px 0;
            z-index: 2000;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
            display: none;
            font-family: var(--font-syne, 'Syne', sans-serif);
            border-top: 1px solid var(--medium-grey-accent);
        }
        .cookie-consent-banner .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        .cookie-consent-text {
            font-size: 14px;
            line-height: 1.6;
            color: var(--dark-bg);
            text-align: center;
            margin-bottom: 0;
            font-weight: 400;
        }
        .cookie-consent-link {
            color: var(--primary-purple);
            text-decoration: underline;
            font-weight: 500;
        }
        .cookie-consent-link:hover {
            color: var(--dark-purple);
        }
        .cookie-consent-actions {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        .cookie-consent-btn {
            font-size: 14px;
            padding: 10px 20px;
        }
        .cookie-consent-btn.decline {
            background-color: transparent;
            color: var(--dark-bg);
            border: 2px solid var(--medium-grey-accent);
        }
        .cookie-consent-btn.decline:hover {
             background-color: var(--medium-grey-accent);
             color: var(--dark-bg);
             border-color: var(--medium-grey-accent);
        }

        /* --- Floating Action Buttons --- */
        #backToTopBtn,
        #manageCookieSettingsBtn {
            position: fixed;
            right: 25px;
            z-index: 1001;
            border: none;
            outline: none;
            color: var(--white);
            cursor: pointer;
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            box-shadow: 0 4px 10px rgba(0,0,0,0.25);
            transition: background-color 0.3s, opacity 0.3s, visibility 0.3s, transform 0.2s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            opacity: 0;
            visibility: hidden;
        }
        #backToTopBtn svg,
        #manageCookieSettingsBtn svg {
            width: 1.2em; /* Slightly larger icon */
            height: 1.2em;
            flex-shrink: 0;
        }
        #manageCookieSettingsBtn {
            background-color: #4A4A4A;
            color: var(--white);
            bottom: 30px;
            border: 1px solid #6A6A6A;
        }
        #manageCookieSettingsBtn:hover {
            background-color: #6A6A6A;
            transform: scale(1.05);
        }
        #backToTopBtn {
            background-color: var(--primary-purple);
            bottom: 80px; /* Adjusted to make space for cookie btn */
        }
        #backToTopBtn:hover {
            background-color: var(--dark-purple);
            transform: scale(1.05);
        }


        /* --- Media Queries for Responsiveness --- */
        @media (max-width: 992px) {
             .navbar {
                /* Allow space for mobile register button if it's outside nav-links */
             }
            .nav-links { /* This is the hamburger menu content */
                display: none;
                flex-direction: column;
                position: absolute;
                top: var(--header-height);
                left: 0;
                width: 100%;
                background-color: var(--dark-bg);
                padding: 20px 0;
                text-align: center;
                box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            }
            .nav-links.active { display: flex; }
            .nav-links a { margin: 10px 0 !important; }
            .nav-links .nav-header-register-btn { /* Reg btn inside hamburger */
                display: inline-block; /* Ensure it's shown */
                margin: 15px auto !important; /* Center it */
            }

            .mobile-nav-actions { /* Container for mobile btn and toggle */
                display: flex;
                align-items: center;
            }
            .nav-header-register-btn-mobile { /* Small register button for top bar on mobile */
                display: inline-block;
                margin-right: 15px; /* Space before hamburger */
            }
            .nav-toggle { display: flex; }


            .hero { padding: 30px 15px; }
            .hero-main-content { flex-direction: column; text-align: center; }
            .hero-text-content { max-width: 100%; margin-bottom: 30px; }
            .hero-text-content h1 { font-size: clamp(36px, 10vw, 60px); }
            .hero-text-content .subtitle { font-size: clamp(14px, 3vw, 16px); max-width: 100%; }
             .hero-main-content.text-align-center .hero-buttons { /* This class not found in HTML, but keeping for potential use */
                align-items: center;
            }
            .hero-image-area { min-width: auto; width: 80%; max-width: 350px; }

            .info-boxes-section { flex-direction: column; gap: 20px; margin-top: 40px; }
            .prelegenci-box, .right-column-info-boxes { flex: 1 1 100%; min-width: auto; }
            .organizers-box .organizer-logos-text { flex-direction: column; gap: 25px; }
            .organizer-item { flex-basis: auto; }
            .organizer-logo-img { max-height: 40px; max-width: 100px; }

            .agenda-grid { grid-template-columns: 1fr; gap: 30px 0; }
            .agenda-time { text-align: left; margin-bottom: 5px; }

            /* .speakers-grid adjusted in main styles for mobile */
            .speakers-header { flex-direction: column; align-items: flex-start; }
            .speakers-tagline { margin-top: 10px; padding-bottom: 0; max-width: 100%; }
            .speakers-section .section-title { font-size: clamp(40px, 9vw, 72px); }

            .discussion-panel-header { flex-direction: column; align-items: flex-start; gap: 15px; }
            .panel-discussion-title { font-size: clamp(40px, 8vw, 72px); }
            .panel-nav-arrows { width: 100%; display: flex; justify-content: space-between; }
            .panel-nav-arrows button,
            .panel-nav-arrows button:first-child,
            .panel-nav-arrows button + button { margin-left: 0; }
            .panel-card { width: 280px; min-height: 350px; }
            /* Overlapping panel card style for medium screens */
            .panel-card:not(:first-child) { margin-left: -80px; }


            .registration-header .section-title-display { font-size: clamp(36px, 9vw, 72px); }
            .registration-header .registration-subtitle { max-width: 90%; }
            .countdown-banner { flex-direction: column; gap: 30px; padding: 25px; text-align: center; }
            .countdown-text-content { align-items: center; width: 100%; }
            .countdown-timer-display { justify-content: center; }
            .countdown-timer-display .time-value { font-size: clamp(50px, 11vw, 90px); }

            .registration-form-section h3 { font-size: clamp(30px, 5vw, 48px); }

            .contact-query-section { flex-direction: column; align-items: center; gap: 25px; }
            .contact-query-left, .contact-query-right { flex-basis: auto; width: 100%; max-width: 500px; }
            .contact-query-left { text-align: center; }
            .section-title-footer { text-align: center; font-size: clamp(28px, 4.5vw, 48px); }
            .footer-description { margin-left: auto; margin-right: auto; }
            .contact-details-columns { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); text-align: left; }

            .cookie-consent-banner .container { flex-direction: column; }
            .cookie-consent-text { text-align: center; margin-right: 0; margin-bottom: 15px;}
        }

        @media (min-width: 768px) { /* Tablet and up - not mobile */
             .nav-header-register-btn-mobile { display: none; } /* Hide mobile-specific button */
             .nav-links .nav-header-register-btn { display: inline-block; } /* Show desktop one */

             .cookie-consent-banner .container {
                flex-direction: row;
                justify-content: space-between;
            }
             .cookie-consent-text {
                text-align: left;
                flex-grow: 1;
                margin-right: 20px;
                margin-bottom: 0;
            }
             .cookie-consent-actions {
                flex-shrink: 0;
            }
        }

        @media (max-width: 768px) { /* Tablet and smaller */
            body { padding-top: 60px; }
            :root { --header-height: 60px; }

             /* Ensure mobile register button is visible and desktop one in nav-links is hidden if not active */
            .nav-links .nav-header-register-btn {
                 display: inline-block; /* This is for inside the expanded menu */
            }
            .nav-header-register-btn-mobile {
                display: inline-block; /* This is for the top bar */
            }
             .navbar .nav-links a:not(.nav-header-register-btn) { /* Hide other links if mobile-specific button is present */
                 /* display: none; if .nav-links is not active */
             }
             .navbar .nav-links { /* Reset display from desktop */
                /* display: none; */
             }


            .container { width: 95%; }
            .section-title { font-size: clamp(32px, 6vw, 50px); margin-bottom: 25px; }
            .btn { padding: 10px 20px; font-size: 15px; }

            .hero { padding: 25px 10px; }
            .hero-text-content h1 { font-size: clamp(32px, 9vw, 50px); margin-bottom: 15px; }
            .hero-text-content .subtitle { font-size: clamp(13px, 2.5vw, 15px); margin-bottom: 25px; }
            .hero-text-content .btn-primary { padding: 12px 25px; font-size: clamp(14px, 2.5vw, 16px); }

            .info-box { padding: 25px; }
            .info-box h3 { font-size: clamp(22px, 4vw, 28px); margin-bottom: 15px;}
            .prelegenci-box .new-arrow-icon { width: 32px; height: 32px; font-size: 20px; }
            .info-box p { font-size: 14px; }
            .speaker-avatars img { width: 40px; height: 40px; margin-right: -12px;}

            .separator-text { padding-top: 40px; }
            .separator-text h2 { font-size: clamp(32px, 7vw, 50px); margin-bottom: 20px; }
            .date-location-content { padding: 12px 25px; font-size: clamp(14px, 3vw, 16px); }

            .agenda-section .container { padding: 25px; }
            .agenda-item h4 { font-size: clamp(18px, 3.8vw, 22px); }

            .speakers-section .section-title { font-size: clamp(36px, 9vw, 60px); }

            .why-attend-section { padding-top: 40px; padding-bottom: 40px; }
            .why-attend-subtitle { font-size: clamp(15px, 3vw, 18px); margin-bottom: 30px; }
            /* .feature-item styles were replaced by .feature-tile-styled */

            .panel-discussion-title { font-size: clamp(36px, 8vw, 60px); }
            .discussion-panel-carousel { min-height: 360px; }
            /* Panel card adjustments for tablets - may differ from smaller mobile */
            .panel-card { width: 240px; min-height: 320px; padding: 20px; transform: scale(0.8); }
            .panel-card:not(:first-child) { margin-left: -100px; } /* Overlapping for tablets */
            .panel-card-active { transform: scale(0.9); } /* Active card slightly smaller than desktop */

            .panel-card h3 { font-size: clamp(17px, 2.8vw, 20px); }
            .panel-card p { font-size: 13px; }
            .panel-speaker-info .speaker-name { font-size: 14px; }

            .registration-form-section h3 { font-size: clamp(28px, 5vw, 40px); }
            .form-wrapper-new { padding: 25px; }
            .form-group input[type="text"],
            .form-group input[type="email"] { padding: 10px 12px; font-size: 15px; }
            .form-group-checkbox .checkbox-label { font-size: 13px; }
            #contactFormNew .btn-primary.btn-full-width { padding: 12px; font-size: 16px; }

            .footer-content-wrapper { flex-direction: column; align-items: center; text-align: center; }
            .footer-branding-nav, .footer-logos-privacy { flex-basis: auto; width: 100%; align-items: center; }
            .footer-nav { align-items: center; }
            .footer-company-logos { justify-content: center; gap: 15px; } /* Center logos and reduce gap */
            .footer-logo-item-wrapper { flex-grow: 0; min-width: 80px; } /* Prevent excessive growth, adjust min-width */

            .contact-details-columns { grid-template-columns: 1fr; text-align: center; }
            .location-item-footer { justify-content: center; }
            .social-icons-footer { justify-content: center; }
            .contact-column-footer h4 { text-align: center; }
            .google-map-iframe { height: 250px; }
            #backToTopBtn, #manageCookieSettingsBtn { padding: 10px; font-size: 18px; width: auto; height: auto; }
            #backToTopBtn span, #manageCookieSettingsBtn span { display: none; } /* Hide text on tablets for icon only */
        }

        @media (max-width: 576px) { /* Smaller mobile phones */
            .nav-logo a { font-size: 18px; }
            .nav-header-register-btn-mobile {
                font-size: 12px;
                padding: 5px 10px;
                margin-right: 10px;
            }
            .nav-toggle { width: 28px; height: 22px; }
            .nav-toggle .bar { height: 2.5px; }


            .hero-text-content h1 { font-size: clamp(28px, 8vw, 40px); }
            .hero-text-content .subtitle { font-size: 12px; }
            .hero-text-content .btn-outline-hero { width: 100%; max-width: 280px; justify-content: center;}
            .hero-image-area img { width: clamp(200px, 60vw, 300px); }

            .section-title { font-size: clamp(28px, 6vw, 42px); }
            .speakers-section .section-title,
            .panel-discussion-title,
            .registration-header .section-title-display { font-size: clamp(30px, 9vw, 48px); }

            .speaker-card .speaker-image-wrapper {
                min-height: 280px; /* Adjust for smallest screens */
                max-height: 320px;
            }

            .registration-header .registration-subtitle { font-size: clamp(14px, 3.5vw, 16px); }
            .countdown-banner { padding: 20px; border-radius: 20px; }
            .countdown-timer-display { gap: 8px; }
            .countdown-timer-display .time-value { font-size: clamp(36px, 10vw, 60px); }
            .countdown-graphic img { max-height: 80px; }

            .registration-form-section h3 { font-size: clamp(26px, 5vw, 36px); }
            .form-wrapper-new { padding: 20px; }

            /* Panel carousel for very small screens: stack cards or show one active */
            .panel-card {
                width: calc(100% - 40px); /* Full width minus some padding */
                max-width: 300px; /* Max width for a single card */
                min-height: 320px;
                margin-left: 0 !important; /* Remove negative margin */
                transform: scale(0.95) !important; /* Slightly smaller base scale */
                opacity: 0 !important; /* Hide non-active cards */
                display: none !important; /* Hide non-active cards */
            }
            .panel-card.panel-card-active {
                transform: scale(1) !important; /* Active card normal size */
                box-shadow: 0 8px 20px rgba(123, 0, 255, 0.25) !important;
                opacity: 1 !important;
                display: flex !important; /* Show active card */
            }
            .discussion-panel-carousel { min-height: auto; padding: 10px 0; }

            .contact-footer-wrapper { padding: 30px 0; margin-top: 40px; }
            .section-title-footer { font-size: clamp(24px, 5vw, 36px); }
            .footer-description { font-size: 14px; }
            .footer-branding-nav h5 { font-size: clamp(16px, 3vw, 20px); }
            .footer-logos-privacy { align-items: center;} /* Center privacy link on small mobile */
            .footer-company-logos {
                justify-content: space-around; /* Better spacing for few items */
                gap: 10px;
            }
            .footer-logo-item-wrapper {
                 min-width: 70px; /* Smaller min-width */
                 flex-basis: 40%; /* Allow two logos per row if space */
            }
            .footer-logo-img { max-height: 30px; max-width: 80px;}

            .google-map-iframe { height: 200px; }
            .cookie-consent-actions { width: 100%; flex-direction: column; }
            .cookie-consent-btn { width: 100%; max-width: 280px; }

            #backToTopBtn, #manageCookieSettingsBtn { width: 40px; height: 40px; font-size: 18px; bottom: 15px; padding: 8px; }
            #backToTopBtn { right: 15px; bottom: 65px; /* Adjusted for cookie btn potentially being on left */ }
            #manageCookieSettingsBtn { left: 15px; right: auto; } /* Ensure it's on the left */
            #backToTopBtn span, #manageCookieSettingsBtn span { display: none; } /* Ensure text is hidden */
        }

		/* --- Organizatorzy Section (New dedicated section) --- */
        .organizatorzy-section {
            padding-top: 60px;
            padding-bottom: 60px;
        }
        .organizatorzy-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        a.organizator-card {
            display: flex;
            flex-direction: column;
            background-color: var(--icon-bubble-bg);
            border: 2px solid var(--primary-purple);
            border-radius: 20px;
            padding: 30px;
            gap: 25px;
            align-items: center;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, border-color 0.3s ease-out;
        }
        a.organizator-card:hover,
        a.organizator-card:focus {
            transform: translateY(-5px) scale(1.01);
            box-shadow: 0 8px 25px rgba(123, 0, 255, 0.25);
            border-color: var(--light-cyan);
            outline: none;
        }
        .organizator-card-content {
            flex: 2;
        }
        .organizator-card-content p {
            font-size: clamp(14px, 1.9vw, 15px);
            line-height: 1.65;
            color: var(--text-light-grey);
        }
        .organizator-card-logo {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            max-width: 200px;
        }
        .organizator-card-logo img {
            max-width: 100%;
            max-height: 70px;
            object-fit: contain;
        }
        @media (min-width: 768px) {
            a.organizator-card {
                flex-direction: row;
                align-items: center;
            }
            .organizator-card-content {
                text-align: left;
            }
            .organizator-card-logo {
                justify-content: flex-end;
                width: auto;
            }
        }
		.force-white-logo { /* Utility class to make logos white if they are dark */
            filter: brightness(0) invert(1);
        }
		
		/* --- Partner Section --- */
        .partner-section {
            padding-top: 40px;
            padding-bottom: 20px;
        }
        .partner-section .section-title {
            font-size: clamp(28px, 4vw, 42px);
            color: var(--text-light-grey);
            margin-bottom: 25px;
        }
        .partner-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }
        a.partner-card {
            display: flex;
            flex-direction: column;
            background-color: transparent;
            border: 1px solid #444; /* More subtle border */
            border-radius: 20px;
            padding: 30px;
            gap: 25px;
            align-items: center;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s ease-out, border-color 0.3s ease-out, background-color 0.3s ease-out;
        }
        a.partner-card:hover,
        a.partner-card:focus {
            transform: translateY(-3px);
            border-color: var(--primary-purple);
            background-color: rgba(123, 0, 255, 0.05);
            outline: none;
        }
        .partner-card-content {
            flex: 3;
        }
        .partner-card-content p {
            font-size: clamp(14px, 1.9vw, 15px);
            line-height: 1.65;
            color: var(--text-light-grey);
            text-align: center;
            margin: 0;
        }
        .partner-card-logo {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            max-width: 150px;
            margin-bottom: 15px;
        }
        .partner-card-logo img {
            max-width: 100%;
            max-height: 60px;
            object-fit: contain;
        }
        @media (min-width: 768px) {
            a.partner-card {
                flex-direction: row;
                text-align: left;
                gap: 35px;
                padding: 35px 40px;
            }
             .partner-card-logo {
                margin-bottom: 0;
            }
            .partner-card-content p {
                text-align: left;
            }
        }
		
		
/* === NEW STYLES FOR BLOG AND ARTICLES === */
.blog-list-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}
.blog-list-container .section-title {
    color: var(--white);
    margin-bottom: 40px;
}
.article-entry {
    background-color: var(--icon-bubble-bg);
    border-radius: 15px;
    padding: clamp(20px, 4vw, 30px);
    margin-bottom: 25px;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.article-entry:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
}
.article-entry h2 {
    font-size: clamp(24px, 4vw, 30px);
    margin-bottom: 10px;
}
.article-entry h2 a {
    color: var(--light-cyan);
    text-decoration: none;
    transition: color 0.3s;
}
.article-entry h2 a:hover {
    color: var(--white);
}
.article-entry .meta {
    font-size: 14px;
    color: var(--text-light-grey);
    margin-bottom: 15px;
}
.article-entry p {
    font-size: 16px;
    color: var(--text-light-grey);
    margin-bottom: 20px;
}
.article-entry .read-more {
    color: var(--primary-purple);
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}
.article-entry .read-more:hover {
    color: var(--light-cyan);
}

/* --- Article Page Specific Styles --- */
.article-container {
    background-color: var(--light-card-bg);
    color: var(--dark-bg);
    border-radius: 20px;
    padding: clamp(25px, 5vw, 50px);
    margin: 40px auto;
    max-width: 800px; /* Optimal reading width */
    width: 90%;
}
.article-container h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 20px;
    line-height: 1.2;
}
.article-meta {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--medium-grey-accent);
    padding-bottom: 20px;
}
.article-content h2 {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--primary-purple);
    margin-top: 40px;
    margin-bottom: 15px;
}
.article-content p, .article-content li {
    font-family: 'Lato', sans-serif; 
    font-size: 17px;
    line-height: 1.8;
    color: var(--form-label-color);
    margin-bottom: 20px;
    text-align: justify;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}
.article-content strong {
    font-weight: 700;
    color: var(--dark-bg);
}
.article-content ul, .article-content ol {
    padding-left: 25px;
    margin-bottom: 20px;
}
.article-content a {
    color: var(--primary-purple);
    text-decoration: underline;
}
.article-content a:hover {
    color: var(--dark-purple);
}
.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 25px 0;
}

/* --- Reusable CTA Block for Articles --- */
.article-cta {
    background-color: var(--icon-bubble-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    border: 2px solid var(--primary-purple);
}
.article-cta h3 {
    font-size: clamp(22px, 4vw, 28px);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 15px;
}
.article-cta p {
    color: var(--text-light-grey);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
}

.article-cta .btn {
    color: var(--white);
    text-decoration: none; /* Optional: removes underline */
}

/* === Improved Article Spacing & List Formatting === */

/* Add more space below the purple sub-headings (H2) */
.article-content h2 {
    margin-bottom: 25px;
}

/* Add vertical space above and below entire lists */
.article-content ul,
.article-content ol {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 30px; /* Slightly increases indent for a cleaner look */
}

/* Add space between the main numbered list items to treat them as separate sections */
.article-content ol > li {
    margin-top: 30px;
}

/* Remove the extra top space from the very first item in a numbered list */
.article-content ol > li:first-child {
    margin-top: 0;
}

/* Adjust spacing for paragraphs inside a list item */
.article-content li p {
    margin-bottom: 15px;
}