/* Seminar Landing Page Styles */
/* All classes prefixed with sl- to avoid conflicts */

:root {
    --sl-primary: #2563eb;
    --sl-primary-dark: #1d4ed8;
    --sl-secondary: #059669;
    --sl-secondary-dark: #047857;
    --sl-accent: #f59e0b;
    --sl-text: #1f2937;
    --sl-text-light: #6b7280;
    --sl-bg: #ffffff;
    --sl-bg-light: #f3f4f6;
    --sl-bg-dark: #e5e7eb;
    --sl-border: #d1d5db;
    --sl-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --sl-shadow-lg:
        0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --sl-radius: 12px;
    --sl-radius-sm: 8px;
}

.sl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, sans-serif;
}

/* Hero Section */
.sl-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    overflow: hidden;
    padding: 60px 0;
}

.sl-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.55) 0%,
        rgba(118, 75, 162, 0.55) 100%
    );
    z-index: 1;
}

.sl-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Video background for Safari and mobile */
.sl-video-bg {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
    .sl-video-bg {
        /* Keep video on mobile for horizontal view */
        min-width: 100%;
        min-height: 100%;
    }
}

/* Fallback for devices that don't support video */
@supports not (object-fit: cover) {
    .sl-video-bg {
        display: none;
    }
    .sl-hero {
        background-image: url("../media/zal-800.jpg");
        background-size: cover;
        background-position: center;
    }
}

.sl-hero-content {
    position: relative;
    z-index: 2;
}

.sl-hero-header {
    text-align: center;
    margin-bottom: 50px;
}

.sl-hero-title {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.sl-hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.sl-hero-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.sl-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .sl-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.sl-benefits {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--sl-radius);
    padding: 30px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sl-benefits-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.sl-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sl-benefits-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.5;
}

.sl-benefits-item::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--sl-secondary);
    border-radius: 50%;
    margin-right: 18px;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 21px;
}

.sl-media-section {
    display: grid;
    gap: 20px;
}

.sl-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.sl-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--sl-radius-sm);
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.sl-photo:hover {
    transform: scale(1.05);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Fullscreen photo gallery */
.sl-photo-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sl-photo-fullscreen.active {
    opacity: 1;
    visibility: visible;
}

.sl-photo-fullscreen img {
    max-width: 95%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--sl-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.sl-photo-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10000;
}

.sl-photo-close:hover {
    transform: rotate(90deg);
}

.sl-photo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: opacity 0.3s ease;
    opacity: 0.7;
}

.sl-photo-nav:hover {
    opacity: 1;
}

.sl-photo-prev {
    left: 20px;
}

.sl-photo-next {
    right: 20px;
}

.sl-photo-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.sl-photo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sl-photo-dot.active {
    background: white;
    transform: scale(1.2);
}

.sl-video-container {
    position: relative;
    width: 100%;
    border-radius: var(--sl-radius);
    overflow: hidden;
    box-shadow: var(--sl-shadow-lg);
}

.sl-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Introduction Section */
.sl-intro {
    padding: 80px 0;
    background: var(--sl-bg);
}

.sl-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.sl-intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--sl-text);
}

.sl-intro-paragraph {
    margin-bottom: 25px;
    text-align: justify;
}

.sl-intro-highlight {
    font-size: 22px;
    font-weight: 500;
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-left: 4px solid var(--sl-primary);
    border-radius: var(--sl-radius-sm);
}

.sl-intro-highlight strong {
    color: var(--sl-primary);
    font-weight: 700;
}

.sl-intro-cta {
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    color: var(--sl-primary);
    margin-top: 30px;
}

/* What You Get Section */
.sl-get-section {
    padding: 80px 0;
    background: var(--sl-bg-light);
}

.sl-section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--sl-text-light);
    margin-top: -30px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sl-section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--sl-text);
}

.sl-stages-grid {
    display: grid;
    gap: 30px;
}

@media (min-width: 768px) {
    .sl-stages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.sl-stage-card {
    background: var(--sl-bg);
    border-radius: var(--sl-radius);
    padding: 30px;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-left: 4px solid var(--sl-primary);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.sl-stage-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.sl-stage-number {
    display: inline-block;
    background: var(--sl-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.sl-stage-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--sl-text);
    margin-bottom: 15px;
}

.sl-stage-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sl-stage-item {
    padding: 8px 0;
    color: var(--sl-text-light);
    position: relative;
    padding-left: 25px;
}

.sl-stage-item::before {
    content: "🔹";
    position: absolute;
    left: 0;
    font-size: 12px;
}

/* Program Section */
.sl-program {
    padding: 80px 0;
    background: var(--sl-bg-light);
}

.sl-program-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.sl-program-item {
    display: flex;
    gap: 30px;
    padding: 25px;
    background: var(--sl-bg);
    border-radius: var(--sl-radius);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-left: 4px solid var(--sl-primary);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.sl-program-item:hover {
    transform: translateX(5px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.sl-program-break {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, var(--sl-bg) 100%);
}

.sl-program-time {
    flex-shrink: 0;
    min-width: 140px;
    font-size: 18px;
    font-weight: 700;
    color: var(--sl-primary);
    padding-top: 3px;
}

.sl-program-content {
    flex: 1;
}

.sl-program-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--sl-text);
    margin-bottom: 8px;
}

.sl-program-speaker {
    font-size: 16px;
    color: var(--sl-text-light);
    font-style: italic;
    margin-bottom: 10px;
}

.sl-program-details {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.sl-program-details li {
    padding: 6px 0;
    color: var(--sl-text-light);
    position: relative;
    padding-left: 25px;
}

.sl-program-details li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--sl-primary);
    font-weight: 600;
}

/* Documents Section */
.sl-documents {
    padding: 80px 0;
    background: var(--sl-bg);
}

.sl-documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.sl-document-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: var(--sl-bg-light);
    border-radius: var(--sl-radius-sm);
    border: 1px solid var(--sl-border);
}

.sl-document-icon {
    width: 40px;
    height: 40px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #059669;
    font-weight: bold;
    flex-shrink: 0;
    border: 2px solid #86efac;
}

.sl-document-text {
    font-size: 15px;
    color: var(--sl-text);
    line-height: 1.4;
}

/* What You Receive Section */
.sl-receive {
    padding: 80px 0;
    background: var(--sl-bg);
}

.sl-receive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.sl-receive-card {
    background: var(--sl-bg-light);
    border-radius: var(--sl-radius);
    padding: 40px 30px;
    text-align: center;
    border: 2px solid var(--sl-border);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.sl-receive-card:hover {
    border-color: var(--sl-primary);
    transform: translateY(-5px);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.12),
        0 4px 8px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.sl-receive-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.sl-receive-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--sl-text);
    margin-bottom: 15px;
}

.sl-receive-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--sl-text-light);
}

/* Bonus Section */
.sl-bonus {
    padding: 80px 0;
    background: linear-gradient(135deg, #f59e0b15 0%, #f59e0b25 100%);
}

.sl-bonus-badge {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--sl-accent);
    margin-bottom: 40px;
    padding: 15px 30px;
    background: white;
    border-radius: var(--sl-radius);
    display: inline-block;
    box-shadow: var(--sl-shadow);
}

.sl-bonus-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sl-bonus-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--sl-text);
    margin-bottom: 25px;
}

.sl-bonus-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--sl-text);
    margin-bottom: 20px;
}

.sl-bonus-highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--sl-primary);
    margin-top: 30px;
    padding: 25px;
    background: white;
    border-radius: var(--sl-radius);
    border-left: 4px solid var(--sl-accent);
    box-shadow: var(--sl-shadow);
}

/* Speakers Section */
.sl-speakers {
    padding: 80px 0;
    background: linear-gradient(135deg, #f59e0b15 0%, #f59e0b25 100%);
}

.sl-speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.sl-speaker-card {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: var(--sl-radius);
    box-shadow: var(--sl-shadow);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

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

.sl-speaker-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--sl-accent);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.sl-speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sl-speaker-card:hover .sl-speaker-photo img {
    transform: scale(1.05);
}

.sl-speaker-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--sl-text);
    margin-bottom: 10px;
}

.sl-speaker-position {
    font-size: 16px;
    font-weight: 600;
    color: var(--sl-primary);
    margin-bottom: 10px;
}

.sl-speaker-info {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}

/* Target Audience */
.sl-audience {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.sl-audience .sl-section-title {
    color: white;
}

.sl-audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.sl-audience-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--sl-radius);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.sl-audience-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.sl-audience-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.sl-audience-text {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.95;
}

/* Pricing Section */
.sl-pricing {
    padding: 80px 0;
    background: var(--sl-bg-light);
}

.sl-event-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 50px;
    padding: 30px;
    background: white;
    border-radius: var(--sl-radius);
    box-shadow: var(--sl-shadow);
}

.sl-event-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.sl-event-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.sl-event-label {
    font-weight: 600;
    color: var(--sl-text-light);
    font-size: 14px;
    display: block;
}

.sl-event-value {
    font-weight: 700;
    color: var(--sl-text);
    font-size: 18px;
}

.sl-pricing-title {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--sl-text);
}

.sl-pricing-grid {
    display: grid;
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .sl-pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

.sl-price-card {
    background: var(--sl-bg);
    border-radius: var(--sl-radius);
    padding: 40px 30px;
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    text-align: center;
    position: relative;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sl-price-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 16px 32px rgba(0, 0, 0, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.sl-price-card.sl-featured {
    border: 3px solid var(--sl-primary);
    transform: scale(1.05);
}

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

.sl-price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sl-accent);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.sl-price-type {
    font-size: 22px;
    font-weight: 600;
    color: var(--sl-text);
    margin-bottom: 10px;
    margin-top: 10px;
}

.sl-price-description {
    font-size: 14px;
    color: var(--sl-text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.sl-price-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--sl-primary);
    margin-bottom: 10px;
}

.sl-price-currency {
    font-size: 24px;
    font-weight: 400;
}

.sl-price-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
    flex-grow: 1;
}

.sl-price-feature {
    padding: 10px 0;
    color: var(--sl-text);
    position: relative;
    padding-left: 30px;
    font-size: 15px;
}

.sl-price-feature::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--sl-secondary);
    font-weight: bold;
    font-size: 18px;
}

.sl-price-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.sl-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--sl-radius-sm);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    width: 100%;
}

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

.sl-btn-primary:hover {
    background: var(--sl-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.sl-btn-secondary {
    background: var(--sl-secondary);
    color: white;
}

.sl-btn-secondary:hover {
    background: var(--sl-secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.4);
}

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

.sl-btn-outline:hover {
    background: var(--sl-primary);
    color: white;
    transform: translateY(-2px);
}

/* Event Info */
.sl-event-info {
    padding: 80px 0;
    background: var(--sl-bg);
}

.sl-event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sl-event-item {
    text-align: center;
    padding: 30px;
    background: var(--sl-bg-light);
    border-radius: var(--sl-radius);
}

.sl-event-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.sl-event-label {
    font-size: 14px;
    color: var(--sl-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.sl-event-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--sl-text);
}

/* Footer */
.sl-footer {
    padding: 40px 0;
    background: var(--sl-text);
    color: white;
    text-align: center;
}

.sl-footer-text {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.sl-footer-link {
    color: var(--sl-accent);
    text-decoration: none;
}

.sl-footer-link:hover {
    text-decoration: underline;
}

.sl-footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.sl-footer-organizer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .sl-hero {
        padding: 30px 0;
    }

    .sl-hero-logo {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .sl-hero-header {
        margin-bottom: 30px;
    }

    .sl-benefits {
        padding: 20px;
    }

    .sl-photo-grid {
        grid-template-columns: 1fr;
    }

    .sl-intro,
    .sl-get-section,
    .sl-receive,
    .sl-documents,
    .sl-bonus,
    .sl-speakers,
    .sl-audience,
    .sl-pricing {
        padding: 50px 0;
    }

    .sl-intro-highlight {
        font-size: 18px;
    }

    .sl-intro-cta {
        font-size: 18px;
    }

    .sl-event-details {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .sl-event-detail {
        font-size: 16px;
    }

    .sl-bonus-badge {
        font-size: 16px;
        padding: 12px 20px;
    }

    .sl-bonus-title {
        font-size: 24px;
    }

    .sl-bonus-text {
        font-size: 16px;
    }

    .sl-speakers-grid {
        gap: 25px;
    }

    .sl-speaker-photo {
        width: 150px;
        height: 150px;
    }

    .sl-speaker-name {
        font-size: 20px;
    }

    .sl-speaker-position {
        font-size: 14px;
    }

    .sl-speaker-info {
        font-size: 13px;
    }

    .sl-price-card.sl-featured {
        transform: none;
    }

    .sl-price-card.sl-featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .sl-container {
        padding: 0 15px;
    }

    .sl-hero-title {
        font-size: 24px;
    }

    .sl-hero-subtitle {
        font-size: 16px;
    }

    .sl-price-value {
        font-size: 36px;
    }

    .sl-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* Mobile Gallery Styles */
@media (max-width: 767px) {
    .sl-photo {
        height: 280px;
    }

    .sl-photo-fullscreen img {
        max-width: 95%;
        max-height: 85vh;
    }

    .sl-photo-nav {
        font-size: 40px;
        padding: 15px;
    }

    .sl-photo-prev {
        left: 10px;
    }

    .sl-photo-next {
        right: 10px;
    }

    .sl-photo-close {
        font-size: 36px;
        top: 15px;
        right: 20px;
    }

    .sl-photo-dots {
        bottom: 20px;
    }

    .sl-photo-dot {
        width: 10px;
        height: 10px;
    }
}

/* Registration notice styling */
.sl-registration-notice {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: var(--sl-radius);
    padding: 20px;
    margin: 30px 0;
    text-align: center;
    box-shadow: var(--sl-shadow);
}

.sl-registration-notice p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

/* Contact Section Styles */
.sl-contact {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 60px 0;
    text-align: center;
}

.sl-contact-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--sl-text);
    margin-bottom: 30px;
}

.sl-contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.sl-contact-vk {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #4a76a8;
    color: #ffffff;
    padding: 16px 28px;
    border-radius: var(--sl-radius);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--sl-shadow);
}

.sl-contact-vk:hover {
    background: #3d6392;
    transform: translateY(-3px);
    box-shadow: var(--sl-shadow-lg);
}

.sl-contact-vk-logo {
    width: 32px;
    height: 32px;
}

.sl-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sl-contact-phone {
    font-size: 20px;
    font-weight: 600;
    color: var(--sl-text);
}

.sl-contact-email {
    font-size: 16px;
    color: var(--sl-text-light);
}

@media (max-width: 600px) {
    .sl-contact-title {
        font-size: 22px;
    }

    .sl-contact-content {
        flex-direction: column;
        gap: 25px;
    }

    .sl-contact-vk {
        padding: 14px 24px;
        font-size: 16px;
    }
}
