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

/* Smooth scrolling and touch improvements */
html {
    scroll-behavior: smooth;
}

/* Improve touch targets for mobile */
button, .cta-button, .action-button {
    min-height: 44px;
    min-width: 44px;
}

/* Prevent horizontal scroll */
* {
    max-width: 100%;
}

/* Improve tap highlighting on mobile */
button, a, .date-item, .faq-item {
    -webkit-tap-highlight-color: rgba(76, 175, 80, 0.3);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: white;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 100px; /* Compensate for fixed header */
}

/* Mobile-specific improvements */
@media (max-width: 768px) {
    /* Improve text readability */
    body {
        font-size: 16px;
        line-height: 1.6;
        padding-top: 90px; /* Padding for mobile to ensure content is below fixed header */
    }
    
    /* Better spacing for mobile sections */
    .unique-workshops, .features, .learning, .program-effectiveness,
    .additional-info, .effective-simple, .learning-application,
    .upcoming-dates, .pricing-packages, .faq-section {
        padding: 30px 0;
    }
    
    /* Improve button touch targets */
    .cta-button, .action-button {
        min-height: 48px;
        padding: 14px 20px;
        font-size: 16px;
        border-radius: 8px;
        touch-action: manipulation;
    }
    
    /* Better grid layouts for mobile */
    .unique-grid, .features-grid, .effective-grid, .application-grid {
        gap: 20px;
    }
    
    /* Improve form elements */
    input, select, textarea {
        font-size: 16px;
        padding: 12px;
        border-radius: 8px;
    }
    
    /* Better image handling */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Improve scrolling */
    .date-item section, .faq-answer {
        -webkit-overflow-scrolling: touch;
    }
}

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

.whatsapp-content {
    background-color: transparent;
    border: 6px solid #2d5a2d;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.whatsapp-text {
    flex: 1;
    color: white;
}

.whatsapp-text h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.whatsapp-text p {
    font-size: 1.2rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #2d5a2d;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

.whatsapp-icon {
    font-size: 1.3rem;
}

.whatsapp-qr {
    flex: 0 0 auto;
    text-align: center;
}

.whatsapp-qr img {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: white;
    padding: 16px;
}

.qr-caption {
    margin-top: 12px;
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile responsiveness for WhatsApp section */
@media (max-width: 768px) {
    .whatsapp-invitation {
        padding: 30px 0;
        margin-top: 20px;
    }
    
    .whatsapp-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 20px;
    }
    
    .whatsapp-text h2 {
        font-size: 2rem;
    }
    
    .whatsapp-text p {
        font-size: 1.1rem;
    }
    
    .whatsapp-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .whatsapp-qr img {
        width: 160px;
        height: 160px;
    }
}

/* Header */
header {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(51, 51, 51, 0.3);
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Header scroll effect */
header.scrolled {
    background-color: rgba(26, 26, 26, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(76, 175, 80, 0.2);
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo .practical {
    color: #ff4444;
}

.logo .problem-solving {
    color: #4CAF50;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.1);
}

nav a[target="_blank"] {
    font-size: 13px;
    opacity: 0.9;
}

nav a[target="_blank"]:hover {
    opacity: 1;
}

/* Navigation CTA Button */
.nav-cta {
    background-color: #4CAF50 !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    border: 2px solid #4CAF50 !important;
}

.nav-cta:hover {
    background-color: #45a049 !important;
    border-color: #45a049 !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: #4CAF50;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-style {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-box {
    background-color: #2d5a2d;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-box .icon {
    font-size: 32px;
    color: #ff9800;
}

.highlight-box .content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.highlight-box .content p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 60px 0;
    text-align: center;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: white;
}

.features h2 .highlight {
    color: #4CAF50;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 0;
}

.feature-box {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box .icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #4CAF50;
}

.feature-box p {
    font-size: 16px;
    opacity: 0.9;
}

/* Learning Section */
.learning {
    padding: 60px 0;
}

.learning h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #4CAF50;
}

.learning-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.learning-list {
    list-style: none;
}

.learning-list li {
    padding: 15px 0;
    border-bottom: 1px solid #333;
    position: relative;
    padding-left: 30px;
}

.learning-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 18px;
}

.learning-image {
    background-color: #333;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #666;
    font-size: 18px;
    overflow: hidden;
}

.learning-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Unique Workshops */
.unique-workshops {
    padding: 60px 0;
    text-align: center;
}

.unique-workshops h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: white;
}

.unique-workshops h2 .highlight {
    color: #4CAF50;
}

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

.unique-box {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
}

.unique-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #4CAF50;
}

.unique-box p {
    font-size: 14px;
    opacity: 0.9;
}

/* Program Effectiveness Section */
.program-effectiveness {
    padding: 60px 0;
}

.program-effectiveness h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #4CAF50;
}

.program-effectiveness h2 .highlight {
    color: white;
}

.effectiveness-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.person {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 32px;
    align-items: start;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-person {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 15px;
}

.about-person h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #4CAF50;
}

.about-person .headline {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-person p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.7;
}

.photo {
    background-color: #2a2a2a;
    width: 350px;
    height: 410px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #4CAF50;
    font-size: 18px;
    border: 2px solid #4CAF50;
    overflow: hidden;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Additional Info Section */
.additional-info {
    padding: 60px 0;
    text-align: center;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

/* Effective and Simple Section */
.effective-simple {
    padding: 60px 0;
    text-align: center;
}

.effective-simple h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: white;
}

.effective-simple h2 .highlight {
    color: #4CAF50;
}

.effective-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 0;
}

.effective-box {
    background-color: #2a2a2a;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #4CAF50;
}

.effective-box h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.effective-box p {
    font-size: 14px;
    opacity: 0.9;
}

/* Learning Application Section */
.learning-application {
    padding: 60px 0;
    text-align: center;
}

.learning-application h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #4CAF50;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.learning-application .rocket {
    font-size: 28px;
}

.learning-application p {
    font-size: 20px;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 0;
}

.application-box {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #444;
}

.application-box .icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.application-box .icon.lightning {
    color: #ff9800;
}

.application-box .icon.wrench {
    color: #ccc;
}

.application-box .icon.chart {
    color: #2196F3;
}

.application-box h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: white;
}

.application-box p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

/* Upcoming Dates Section */
.upcoming-dates {
    padding: 60px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.upcoming-dates h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: white;
}

.upcoming-dates h2 .highlight {
    color: #4CAF50;
}

.dates-list {
    list-style: none;
    margin-bottom: 32px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.dates-list li {
    margin-bottom: 12px;
}

.date-item {
    cursor: pointer;
    border-radius: 12px;
    border: 1px solid #444;
    font-weight: 600;
    overflow: hidden;
    gap: 20px;
    background-color: rgb(42, 42, 42);
    position: relative;
    z-index: 1;
}

.date-item header {
    padding: 20px 25px;
    display: grid;
    grid-template-columns: 160px 150px 1fr 160px;
    align-items: center;
    gap: 20px;
    position: relative;
    cursor: pointer;
    min-height: 80px;
}

/* Arrow removed from header - now in button */

.date-item section {
    padding: 0 25px;
    border-radius: 12px;
    font-weight: 600;
    overflow: hidden;
    gap: 20px;
    background-color: #333;
    max-height: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.date-item.expanded section {
    max-height: 1000px;
    padding: 20px 25px;
    overflow: visible;
}

/* Pricing packages within date sections */
.date-item section h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: white;
}

.date-item section h3 .highlight {
    color: #4CAF50;
}

.date-item section .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 0;
}

.date-item section .package-card {
    background-color: #2a2a2a;
    padding: 25px 20px;
    border-radius: 12px;
    border: 2px solid #444;
    position: relative;
    transition: transform 0.3s;
}

.date-item section .package-card:hover {
    transform: translateY(-3px);
}

.date-item section .package-card.recommended {
    border-color: #4CAF50;
}

.date-item section .package-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: white;
}

.date-item section .package-card .price {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.date-item section .package-card .early-bird {
    background-color: #0b5e0e;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 24px;
    margin-bottom: 8px;
    display: inline-block;
}

.date-item section .package-card .standard-price {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.date-item section .package-card .features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}

.date-item section .package-card .features-list li {
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
}

.date-item section .package-card .features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.date-item section .package-card .cta-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.date-item section .package-card .cta-button:hover {
    background-color: #45a049;
}

.date-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* City images will be in HTML img tags */

/* Section styles */
.date-section {
    text-align: center;
    border-radius: 8px;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    min-height: 60px;
}

.city-section {
    text-align: left;
}

.city-section .city-name {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.venue-section {
    position: relative;
    z-index: 2;
    text-align: center;
}

.venue-section .venue-name {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.action-section {
    position: relative;
    z-index: 2;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.action-button {
    background: #4CAF50;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.action-button:hover {
    background: #45a049;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Style for "BRAK MIEJSC" buttons - make them look inactive */
.action-button.no-spots {
    background: #666;
    cursor: not-allowed;
    opacity: 0.7;
}

.action-button.no-spots:hover {
    background: #666;
    transform: none;
    box-shadow: none;
}

.action-button .arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.date-item.expanded .action-button .arrow {
    transform: rotate(180deg);
}

.custom-location {
    font-size: 18px;
    margin-top: 24px;
}

.custom-location a {
    color: #4CAF50;
    text-decoration: none;
}

/* Style dla zdjęć miast */
.city-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    z-index: 0;
}

/* Improve image display in date sections */
.date-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 8px;
}

.date-section {
    position: relative;
    min-height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.date-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    z-index: 2;
}

.date-section .date-text {
    background: transparent;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    display: inline-block;
    position: relative;
    z-index: 3;
    padding: 8px 12px;
}

/* Pricing Packages Section */
.pricing-packages {
    padding: 60px 0;
    text-align: center;
}

.pricing-packages h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: white;
}

.pricing-packages h2 .highlight {
    color: #4CAF50;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 0;
}

.package-card {
    background-color: #2a2a2a;
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid #444;
    position: relative;
    transition: transform 0.3s;
}

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

.package-card.recommended {
    border-color: #4CAF50;
}

.recommended-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.package-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
}

.price {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
}

.strikethrough {
    text-decoration: line-through;
    text-decoration-color: red;
    opacity: 1;
}

.early-bird {
    background-color: #0b5e0e;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 36px;
    margin-bottom: 10px;
    display: inline-block;
}

.standard-price {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.features-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.cta-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.cta-button:hover {
    background-color: #45a049;
}

.cta-button.large {
    padding: 25px 50px;
    font-size: 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 20px;
    width: auto;
    max-width: 300px;
    display: inline-block;
}

.cta-button.large:hover {
    background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter-section {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #1a3a1a 0%, #2d5a2d 100%);
    border-radius: 20px;
    margin: 48px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.1) 0%, transparent 50%, rgba(76, 175, 80, 0.1) 100%);
    pointer-events: none;
}

.newsletter-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 1;
}

.newsletter-section h2 .highlight {
    color: #4CAF50;
}

.newsletter-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.newsletter-section .cta-button {
    position: relative;
    z-index: 1;
    width: auto;
    padding: 15px 40px;
}

/* Final CTA Section */
.final-cta {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #333 100%);
    border-radius: 20px;
    margin: 48px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.1) 0%, transparent 50%, rgba(76, 175, 80, 0.1) 100%);
    pointer-events: none;
}

.final-cta h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 48px;
    color: white;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}

.final-cta p {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.highlight {
    color: #4CAF50;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: white;
}

.faq-section h2 .highlight {
    color: #4CAF50;
}

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

.faq-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: #333;
}

.faq-question {
    padding: 25px 40px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #3a3a3a;
}

.faq-icon {
    color: #4CAF50;
    font-size: 24px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 2px;
    background-color: #4CAF50;
    transition: all 0.3s ease;
}

.faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 12px;
    background-color: #4CAF50;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #333;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 40px 25px 40px;
    line-height: 1.6;
    color: #e0e0e0;
    text-align: justify;
}

/* Mobile-first responsive design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    /* Header improvements */
    header {
        padding: 15px 0;
        text-align: center;
    }
    
    .logo {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1a1a1a;
        border-top: 1px solid #333;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        z-index: 9999;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        margin-left: -24px;
        margin-right: -24px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 16px;
        font-size: 16px;
        text-align: center;
        border-radius: 8px;
        background-color: rgba(76, 175, 80, 0.1);
    }
    
    .nav-menu a:hover {
        background-color: rgba(76, 175, 80, 0.2);
    }
    
    .nav-menu .nav-cta {
        background-color: #4CAF50 !important;
        color: white !important;
        font-weight: 600 !important;
        margin-top: 10px;
    }
    
    .nav-menu .nav-cta:hover {
        background-color: #45a049 !important;
        transform: none !important;
        box-shadow: none !important;
    }
    
    /* Hero improvements */
    .hero {
        padding: 30px 0;
    }
    
    .hero h1 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .highlight-box {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .highlight-box .icon {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .highlight-box .content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .highlight-box .content p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Features improvements */
    .features {
        padding: 40px 0;
    }
    
    .features h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-box {
        padding: 25px 20px;
    }
    
    .feature-box .icon {
        font-size: 36px;
    }
    
    .feature-box h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .feature-box p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Learning section improvements */
    .learning {
        padding: 40px 0;
    }
    
    .learning h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .learning-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .learning-list li {
        padding: 12px 0;
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Unique workshops improvements */
    .unique-workshops {
        padding: 40px 0;
    }
    
    .unique-workshops h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .unique-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .unique-box {
        padding: 20px;
    }
    
    .unique-box h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .unique-box p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Program effectiveness improvements */
    .program-effectiveness {
        padding: 40px 0;
    }
    
    .program-effectiveness h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .effectiveness-content {
        gap: 30px;
    }
    
    .person {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .about-person {
        padding: 20px;
        order: 2;
    }
    
    .about-person h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .about-person .headline {
        font-size: 16px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .about-person p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .photo {
        width: 100%;
        max-width: 250px;
        height: 250px;
        font-size: 16px;
        margin: 0 auto;
        order: 1;
    }
    
    .photo img {
        border-radius: 8px;
    }
    
    /* Additional info improvements */
    .additional-info {
        padding: 40px 0;
    }
    
    .additional-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Effective simple improvements */
    .effective-simple {
        padding: 40px 0;
    }
    
    .effective-simple h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .effective-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .effective-box {
        padding: 20px;
    }
    
    .effective-box h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .effective-box p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    /* Learning application improvements */
    .learning-application {
        padding: 40px 0;
    }
    
    .learning-application h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .learning-application p {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .application-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .application-box {
        padding: 25px 20px;
    }
    
    .application-box .icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .application-box h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .application-box p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    /* Upcoming dates improvements */
    .upcoming-dates {
        padding: 40px 0;
    }
    
    .upcoming-dates h2 {
        font-size: 26px;
        margin-bottom: 30px;
        line-height: 1.3;
    }
    
    .dates-list {
        max-width: 100%;
        margin: 0;
    }
    
    .date-item header {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
        text-align: center;
    }
    
    .date-section {
        order: 1;
        min-height: 100px;
    }
    
    .city-section {
        order: 2;
        text-align: center;
    }
    
    .city-section .city-name {
        font-size: 18px;
        font-weight: 600;
    }
    
    .action-section {
        order: 3;
        justify-content: center;
    }
    
    .action-button {
        padding: 12px 24px;
        font-size: 14px;
        width: auto;
        min-width: 120px;
    }
    
    .date-item section .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .date-item section .package-card {
        padding: 20px 15px;
    }
    
    .date-item section .package-card h4 {
        font-size: 18px;
    }
    
    .date-item section .package-card .early-bird {
        font-size: 20px;
        padding: 8px 12px;
    }
    
    /* Improve section title spacing */
    .date-item section h3 {
        margin-bottom: 25px;
        font-size: 20px;
    }
    
    .date-item.expanded section {
        max-height: 2000px;
        padding: 25px 20px;
    }
    
    .date-section .date-text {
        padding: 8px 12px;
        font-size: 14px;
        font-weight: bold;
    }
    
    /* Pricing packages improvements */
    .pricing-packages {
        padding: 40px 0;
    }
    
    .pricing-packages h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card {
        padding: 25px 20px;
    }
    
    .package-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .package-card .price {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .package-card .early-bird {
        font-size: 24px;
        padding: 6px 12px;
        margin-bottom: 8px;
    }
    
    .package-card .standard-price {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .package-card .features-list li {
        padding: 6px 0;
        font-size: 13px;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Newsletter Section improvements */
    .newsletter-section {
        padding: 40px 20px;
        margin: 30px 0;
    }
    
    .newsletter-section h2 {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .newsletter-section p {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .newsletter-section .cta-button {
        width: auto;
        padding: 14px 30px;
        font-size: 15px;
    }

    /* Final CTA improvements */
    .final-cta {
        padding: 40px 20px;
        margin: 30px 0;
    }
    
    .final-cta h2 {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .final-cta p {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .cta-button.large {
        padding: 20px 30px;
        font-size: 16px;
        margin-top: 15px;
        max-width: 250px;
    }
    
    /* FAQ improvements */
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-section h2 {
        font-size: 26px;
        margin-bottom: 30px;
        line-height: 1.3;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 16px;
        line-height: 1.4;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 14px;
        line-height: 1.6;
        text-align: left;
    }
    
    /* Custom location improvements */
    .custom-location {
        font-size: 16px;
        margin-top: 20px;
        padding: 0 16px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    /* Hero adjustments for very small screens */
    .hero {
        padding: 20px 0;
    }
    
    .hero h1 {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    /* Make highlight boxes more compact */
    .highlight-box {
        padding: 15px;
    }
    
    .highlight-box .content h3 {
        font-size: 16px;
    }
    
    .highlight-box .content p {
        font-size: 13px;
    }
    
    /* Adjust feature boxes */
    .feature-box {
        padding: 20px 15px;
    }
    
    .feature-box .icon {
        font-size: 32px;
    }
    
    .feature-box h3 {
        font-size: 18px;
    }
    
    .feature-box p {
        font-size: 13px;
    }
    
    /* Adjust unique boxes */
    .unique-box {
        padding: 15px;
    }
    
    .unique-box h3 {
        font-size: 16px;
    }
    
    .unique-box p {
        font-size: 13px;
    }
    
    /* Adjust person sections */
    .about-person {
        padding: 15px;
    }
    
    .about-person h3 {
        font-size: 18px;
    }
    
    .about-person .headline {
        font-size: 14px;
    }
    
    .about-person p {
        font-size: 13px;
    }
    
    .photo {
        width: 280px;
        height: 248px;
        font-size: 14px;
    }
    
    .photo img {
        border-radius: 4px;
    }
    
    /* Adjust effective boxes */
    .effective-box {
        padding: 15px;
    }
    
    .effective-box h3 {
        font-size: 14px;
    }
    
    .effective-box p {
        font-size: 12px;
    }
    
    /* Adjust application boxes */
    .application-box {
        padding: 20px 15px;
    }
    
    .application-box .icon {
        font-size: 32px;
    }
    
    .application-box h3 {
        font-size: 16px;
    }
    
    .application-box p {
        font-size: 13px;
    }
    
    /* Adjust date items for very small screens */
    .date-item header {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
        text-align: center;
    }
    
    .date-section {
        order: 1;
        min-height: 80px;
    }
    
    .date-section .date-text {
        padding: 6px 10px;
        font-size: 12px;
        font-weight: bold;
    }
    
    .city-section {
        order: 2;
        text-align: center;
    }
    
    .city-section .city-name {
        font-size: 16px;
        font-weight: 600;
    }
    
    .action-section {
        order: 3;
        justify-content: center;
    }
    
    .action-button {
        padding: 10px 20px;
        font-size: 12px;
        min-width: 100px;
    }
    
    /* Adjust package cards */
    .package-card {
        padding: 20px 15px;
    }
    
    /* Increase expanded section height for very small screens */
    .date-item.expanded section {
        max-height: 2500px;
        padding: 20px 15px;
    }
    
    .package-card h3 {
        font-size: 20px;
    }
    
    .package-card .price {
        font-size: 18px;
    }
    
    .package-card .early-bird {
        font-size: 20px;
        padding: 5px 10px;
    }
    
    .package-card .features-list li {
        font-size: 12px;
    }
    
    .cta-button {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    /* Adjust newsletter section */
    .newsletter-section {
        padding: 30px 15px;
    }
    
    .newsletter-section h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .newsletter-section p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .newsletter-section .cta-button {
        width: auto;
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Adjust final CTA */
    .final-cta {
        padding: 30px 15px;
    }
    
    .final-cta h2 {
        font-size: 24px;
    }
    
    .final-cta p {
        font-size: 14px;
    }
    
    .cta-button.large {
        padding: 18px 25px;
        font-size: 14px;
        margin-top: 12px;
        max-width: 220px;
    }
    
    /* Adjust FAQ */
    .faq-section h2 {
        font-size: 24px;
    }
    
    .faq-question {
        padding: 15px 18px;
        font-size: 14px;
    }
    
    .faq-answer p {
        padding: 0 18px 15px 18px;
        font-size: 13px;
    }
    
    /* Adjust custom location */
    .custom-location {
        font-size: 14px;
        padding: 0 12px;
    }
}

/* Landscape orientation adjustments for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 20px 0;
    }
    
    .hero h1 {
        font-size: 22px;
    }
    
    .features, .learning, .unique-workshops, .program-effectiveness, 
    .additional-info, .effective-simple, .learning-application, 
    .upcoming-dates, .pricing-packages, .faq-section {
        padding: 20px 0;
    }
    
    .final-cta {
        padding: 20px 15px;
        margin: 15px 0;
    }
}

/* Additional mobile improvements */
@media (max-width: 768px) {
    /* Better focus states for accessibility */
    button:focus, .cta-button:focus, .action-button:focus {
        outline: 2px solid #4CAF50;
        outline-offset: 2px;
    }
    
    /* Improve readability of small text */
    .standard-price, .package-card .features-list li {
        font-size: 13px;
    }
    
    /* Better spacing for mobile */
    .unique-box, .feature-box, .effective-box, .application-box {
        margin-bottom: 10px;
    }
    
    /* Improve image aspect ratios */
    .date-section img {
        object-fit: cover;
        border-radius: 8px;
    }
    
    /* Better button states */
    .cta-button:active, .action-button:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #45a049;
    text-decoration: underline;
}

.footer-links .separator {
    color: #666;
    font-weight: normal;
}

.footer-copyright {
    color: #999;
    font-size: 14px;
}

.footer-copyright p {
    margin: 0;
}

/* Footer Mobile Styles */
@media (max-width: 768px) {
    .footer {
        padding: 30px 0;
        margin-top: 40px;
    }
    
    .footer-content {
        gap: 15px;
    }
    
    .footer-links {
        gap: 12px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
}
/* Smooth scrolling and touch improvements */
html {
    scroll-behavior: smooth;
}

/* Improve touch targets for mobile */
button, .cta-button, .action-button {
    min-height: 44px;
    min-width: 44px;
}

/* Prevent horizontal scroll */
* {
    max-width: 100%;
}

/* Improve tap highlighting on mobile */
button, a, .date-item, .faq-item {
    -webkit-tap-highlight-color: rgba(76, 175, 80, 0.3);
}

