 /* Reset i podstawowe style */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 80px 0;
            position: relative;
        }
        
        h1, h2, h3, h4, h5, h6 {
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        p {
            margin-bottom: 20px;
        }
        
        /* Przyciski */
        .btn {
            display: inline-block;
            padding: 15px 30px;
            background-color: #ff3e79;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
            box-shadow: 0 4px 10px rgba(255, 62, 121, 0.3);
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .btn:hover {
            background-color: #e62e69;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 62, 121, 0.4);
        }
        
        .btn:active {
            transform: translateY(-1px);
        }
        
        .btn::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
        }
        
        .btn:focus:not(:active)::after {
            animation: ripple 1s ease-out;
        }
        
        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 0.5;
            }
            100% {
                transform: scale(20, 20);
                opacity: 0;
            }
        }
        
        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 4px 10px rgba(255, 62, 121, 0.3);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 4px 20px rgba(255, 62, 121, 0.5);
                transform: scale(1.02);
            }
        }
        
        @keyframes pulse-white {
            0%, 100% {
                box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 4px 25px rgba(255, 255, 255, 0.6);
                transform: scale(1.02);
            }
        }
        
        .btn-secondary {
            background-color: #333;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .btn-secondary:hover {
            background-color: #444;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid #ff3e79;
            color: #ff3e79;
            box-shadow: none;
        }
        
        .btn-outline:hover {
            background-color: #ff3e79;
            color: white;
            box-shadow: 0 4px 10px rgba(255, 62, 121, 0.3);
        }
        
        .btn-lg {
            padding: 18px 36px;
            font-size: 18px;
        }
        
        .btn-sm {
            padding: 10px 20px;
            font-size: 14px;
        }
        
        .btn-block {
            display: block;
            width: 100%;
        }
        
        /* Header i nawigacja */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            /*padding: 15px 20px;*/
        }
        
        .logo {
            max-width: 180px;
			margin: auto;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            margin-left: 30px;
            position: relative;
        }
        
        .nav-link {
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: #ff3e79;
        }
        
        .header-cta {
            margin-left: 30px;
        }
        
        .mobile-menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero section */
        .hero {
            padding: 180px 0 100px;
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .hero-badge {
            display: inline-block;
            background-color: #ff3e79;
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero h2 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 30px;
            line-height: 1.4;
        }
        
        .hero-description {
            font-size: 18px;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        
        .hero-feature {
            margin: 10px 20px;
            text-align: center;
        }
        
        .hero-feature-number {
            font-size: 36px;
            font-weight: 700;
            color: #ff3e79;
            margin-bottom: 5px;
        }
        
        .hero-feature-text {
            font-size: 14px;
            font-weight: 500;
        }
        
        .hero-cta {
            margin-bottom: 30px;
        }
        
        .hero-guarantee {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
            font-size: 14px;
        }
        
        .hero-guarantee img {
            width: 30px;
            margin-right: 10px;
        }
        
        /* Instructor section */
        .instructor {
            background-color: #f9f9f9;
        }
        
        .instructor-container {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .instructor-content {
            flex: 1;
            min-width: 300px;
            padding-right: 40px;
        }
        
        .instructor-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .instructor-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .instructor-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333;
        }
        
        .instructor-description {
            font-size: 18px;
            margin-bottom: 30px;
        }
        
        .instructor-credentials {
            margin-bottom: 30px;
        }
        
        .credential-item {
            display: flex;
            margin-bottom: 15px;
        }
        
        .credential-icon {
            min-width: 50px;
            text-align: center;
            color: #ff3e79;
            font-size: 24px;
        }
        
        .credential-text {
            font-size: 16px;
        }
        
        .credential-text strong {
            font-weight: 600;
        }
        
        .instructor-partners {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: flex-start;
            margin-top: 30px;
            gap: 15px;
        }
        
        .partner-logo {
            height: 80px;
            max-width: 150px;
            object-fit: contain;
        }
        
        /* Mobile optimization for partner logos */
        @media (max-width: 768px) {
            .instructor-partners {
                gap: 8px;
                margin-left: -10px;
                justify-content: center;
            }
            
            .partner-logo {
                height: 60px;
                max-width: 120px;
            }
            
            .partner-logo:nth-child(2) {
                margin-left: -15px; /* Przesunięcie IQ Nails w lewo ze względu na przezroczystą przestrzeń */
            }
            
            .partner-logo:nth-child(3) {
                margin-left: -30px; /* Przesunięcie Semilac dla równych odstępów */
            }
        }
        
        
        /* Benefits section */
        .benefits {
            text-align: center;
        }
        
        .section-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #ff3e79;
        }
        
        .benefits-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .benefit-card {
            width: 300px;
            margin: 20px;
            padding: 40px 30px;
            background-color: #f9f9f9;
            border-radius: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .benefit-icon {
            font-size: 48px;
            color: #ff3e79;
            margin-bottom: 20px;
        }
        
        .benefit-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .benefit-description {
            font-size: 16px;
            color: #666;
        }
        
        /* For whom section */
        .for-whom {
            background-color: #f9f9f9;
        }
        
        .audience-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .audience-item {
            width: 48%;
            min-width: 300px;
            margin-bottom: 30px;
            display: flex;
        }
        
        .audience-number {
            font-size: 48px;
            font-weight: 700;
            color: #ff3e79;
            margin-right: 20px;
            line-height: 1;
        }
        
        .audience-content h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .audience-content p {
            font-size: 16px;
            color: #666;
        }
        
        /* Course content section */
        .course-content-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 50px;
        }
        
        .course-content-column {
            width: 48%;
            min-width: 300px;
        }
        
        .course-content-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .course-content-description {
            margin-bottom: 20px;
        }
        
        .feature-list {
            display: flex;
            flex-wrap: wrap;
        }
        
        .feature-item {
            width: 50%;
            min-width: 200px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .feature-icon {
            color: #ff3e79;
            margin-right: 10px;
        }
        
        .course-content-cta {
            text-align: center;
            margin-top: 30px;
        }
        
        .course-content-note {
            font-size: 20px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        /* Case studies section */
        .case-studies {
            background-color: #f9f9f9;
            text-align: center;
        }
        
        .case-studies-description {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto 50px;
        }
        
        .case-studies-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 40px;
        }
        
        .case-study-card {
            width: 300px;
            margin: 15px;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .case-study-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .case-study-image {
            height: 200px;
            background-color: #ddd;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            position: relative;
            overflow: hidden;
        }
        
        .case-study-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .case-study-card:hover .case-study-image img {
            transform: scale(1.1);
        }
        
        .case-study-content {
            padding: 20px;
            text-align: left;
        }
        
        .case-study-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .case-study-description {
            font-size: 14px;
            color: #666;
        }
        
        /* Pricing section */
        .pricing {
            background-color: #f9f9f9;
            text-align: center;
        }
        
        .pricing-description {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto 50px;
        }
        
        .pricing-toggle {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 40px;
        }
        
        .pricing-toggle-option {
            padding: 10px 20px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .pricing-toggle-option.active {
            color: #ff3e79;
        }
        
        .pricing-toggle-switch {
            width: 60px;
            height: 30px;
            background-color: #ff3e79;
            border-radius: 30px;
            margin: 0 10px;
            position: relative;
            cursor: pointer;
        }
        
        .pricing-toggle-slider {
            width: 24px;
            height: 24px;
            background-color: white;
            border-radius: 50%;
            position: absolute;
            top: 3px;
            left: 3px;
            transition: all 0.3s ease;
        }
        
        .pricing-toggle-switch.monthly .pricing-toggle-slider {
            transform: translateX(0);
        }
        
        .pricing-toggle-switch.yearly .pricing-toggle-slider {
            transform: translateX(30px);
        }
        
        .pricing-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 50px;
        }
        
        .pricing-card {
            width: 300px;
            margin: 15px;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: 1px solid #eee;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .pricing-card.popular {
            transform: scale(1.05);
            border: 2px solid #ff3e79;
            z-index: 2;
        }
        
        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-5px);
        }
        
        .pricing-card-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            position: relative;
        }
        
        .pricing-card.popular .pricing-card-header {
            background-color: #ff3e79;
            color: white;
        }
        
        .pricing-card-badge {
            position: relative;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background-color: white;
            color: #ff3e79;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-card-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .pricing-card-price {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .pricing-card-price .price-original {
            display: block;
            font-size: 20px;
            font-weight: 400;
            text-decoration: line-through;
            color: #999;
            margin-bottom: 5px;
        }
        
        .pricing-card-price .price-discounted {
            display: block;
            font-size: 36px;
            font-weight: 700;
            color: #ff3e79;
        }
        
        .pricing-card-duration {
            color: #666;
            font-size: 14px;
        }
        
        .pricing-card.popular .pricing-card-duration {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .pricing-card.popular .pricing-card-price .price-discounted {
            color: white;
        }
        
        .pricing-card.popular .pricing-card-price .price-original {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .pricing-card-content {
            padding: 30px 20px;
        }
        
        .pricing-features {
            text-align: left;
            margin-bottom: 30px;
        }
        
        .pricing-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 14px;
        }
        
        .pricing-feature-icon {
            color: #ff3e79;
            margin-right: 10px;
            font-size: 16px;
            flex-shrink: 0;
            min-width: 16px;
        }
        
        .pricing-feature-icon.inactive {
            color: #ccc;
        }
        
        .pricing-card-cta {
            margin-top: 20px;
        }
        
        .pricing-card.popular .pricing-card-cta .btn {
            background-color: #ff3e79;
        }
        
        .pricing-card.popular .pricing-card-cta .btn:hover {
            background-color: #e62e69;
        }
        
        /* Comparison table */
        .comparison {
            background-color: #f9f9f9;
        }
        
        .comparison-table-container {
            overflow-x: auto;
        }
        
        .comparison-table {
            width: 100%;
            min-width: 600px;
            border-collapse: collapse;
            margin-bottom: 40px;
        }
        
        .comparison-table th,
        .comparison-table td {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }
        
        .comparison-table th:first-child,
        .comparison-table td:first-child {
            text-align: left;
        }
        
        .comparison-table thead tr {
            background-color: #ff3e79;
            color: white;
        }
        
        .comparison-table tbody tr:nth-child(even) {
            background-color: #f5f5f5;
        }
        
        .comparison-table tbody tr:nth-child(odd) {
            background-color: white;
        }
        
        .comparison-check {
            color: #ff3e79;
            font-size: 18px;
        }
        
        .comparison-x {
            color: #ccc;
            font-size: 18px;
        }
        
        .comparison-highlight {
            background-color: rgba(255, 62, 121, 0.1) !important;
        }
        
        .comparison-cta {
            text-align: center;
            margin-top: 40px;
        }
        
        /* Testimonials section */
        .testimonials {
            text-align: center;
        }
        
        .testimonials-description {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto 50px;
        }
        
        .testimonials-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .testimonial-card {
            width: 300px;
            margin: 15px;
            padding: 30px;
            background-color: #f9f9f9;
            border-radius: 10px;
            text-align: left;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #ddd;
            margin-right: 15px;
            overflow: hidden;
        }
        
        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .testimonial-author {
            font-weight: 600;
        }
        
        .testimonial-role {
            color: #666;
            font-size: 14px;
        }
        
        .testimonial-content {
            margin-bottom: 15px;
            font-size: 14px;
            line-height: 1.6;
        }
        
        .testimonial-rating {
            color: #FFD700;
            font-size: 24px;
            text-align: center;
            margin: 20px 0;
            letter-spacing: 3px;
        }
        
        /* FAQ section */
        .faq {
            background-color: #f9f9f9;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question {
            padding: 20px;
            font-weight: 600;
            cursor: pointer;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: #f5f5f5;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 20px;
            color: #ff3e79;
        }
        
        .faq-item.active .faq-question::after {
            content: '-';
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 1000px;
        }
        
        .faq-answer p {
            margin-bottom: 10px;
        }
        
        .faq-answer ul, .faq-answer ol {
            padding-left: 20px;
            margin-bottom: 10px;
        }
        
        .faq-answer li {
            margin-bottom: 5px;
        }
        
        .faq-more {
            text-align: center;
            margin-top: 30px;
        }
        
        /* Guarantee section */
        .guarantee {
            text-align: center;
        }
        
        .guarantee-container {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .guarantee-icon {
            font-size: 72px;
            color: #ff3e79;
            margin-bottom: 20px;
        }
        
        .guarantee-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .guarantee-description {
            font-size: 18px;
            margin-bottom: 20px;
        }
        
        .guarantee-note {
            font-size: 14px;
            color: #666;
        }
        
        /* Certificate section */
        .certificate {
            text-align: center;
            background-color: #f9f9f9;
            padding: 60px 0;
        }
        
        .certificate-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .certificate-image {
            max-width: 400px;
            margin: 0 auto 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .certificate-title {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333;
        }
        
        .certificate-description {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .certificate-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .certificate-feature {
            width: 300px;
            margin: 15px;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: left;
        }
        
        .certificate-feature-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .certificate-feature-icon {
            margin-right: 10px;
            font-size: 20px;
        }
        
        .certificate-feature-description {
            font-size: 14px;
            color: #666;
        }
        
        /* CTA section */
        .cta {
            background-color: #ff3e79;
            color: white;
            text-align: center;
        }
        
        .cta-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-description {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto 40px;
        }
        
        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .cta-button {
            margin: 10px;
        }
        
        .cta-button.popular {
            transform: scale(1.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Footer */
        footer {
            background-color: #333;
            color: white;
            padding: 60px 0;
        }
        
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .footer-column {
            width: 200px;
            margin-bottom: 30px;
        }
        
        .footer-column:first-child {
            width: 300px;
        }
        
        .footer-logo {
            max-width: 200px;
            margin-bottom: 20px;
        }
        
        .footer-description {
            margin-bottom: 20px;
            font-size: 14px;
            color: #ccc;
        }
        
        .footer-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-contact {
            margin-bottom: 20px;
            font-size: 14px;
            color: #ccc;
        }
        
        .footer-social {
            margin-top: 20px;
        }
        
        .footer-social-link {
            display: inline-block;
            margin-right: 10px;
            color: white;
            transition: all 0.3s ease;
        }
        
        .footer-social-link:hover {
            color: #ff3e79;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-link-item {
            margin-bottom: 10px;
        }
        
        .footer-link {
            color: #ccc;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .footer-link:hover {
            color: white;
        }
        
        .footer-payment {
            margin-top: 10px;
        }
        
        .footer-payment img {
            max-width: 150px;
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #555;
            font-size: 14px;
            color: #ccc;
        }
        
        /* Floating elements */
        .floating-cta {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 99;
            display: none;
        }
        
        .floating-cta.visible {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }
        
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background-color: #ff3e79;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 99;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top i {
            color: white;
        }
        
        /* Popup */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .popup-overlay.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .popup-container {
            width: 90%;
            max-width: 500px;
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            position: relative;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }
        
        .popup-overlay.visible .popup-container {
            transform: translateY(0);
        }
        
        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            color: #999;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .popup-close:hover {
            color: #333;
        }
        
        .popup-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .popup-content {
            margin-bottom: 20px;
        }
        
        .popup-form {
            margin-top: 20px;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .form-input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #ff3e79;
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            .container {
                padding: 0 15px;
            }
            
            section {
                padding: 60px 0;
            }
            section#comparison.comparison {
				padding-top: 20px;
            }
			section#instructor.instructor {
				padding-bottom: 20px;
            }
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero h2 {
                font-size: 24px;
            }
            
            .section-title {
                font-size: 30px;
            }
            
            .instructor-content {
                padding-right: 0;
                margin-bottom: 30px;
            }
            
            .audience-item {
                width: 100%;
            }
            
            .course-content-column {
                width: 100%;
                margin-bottom: 30px;
            }
            
            .pricing-card.popular {
                transform: scale(1);
            }
            
            .pricing-card.popular:hover {
                transform: translateY(-5px);
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
              /*  padding: 10px 15px; */
            }
            
            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                flex-direction: column;
                padding: 20px 0;
            }
            
            .nav-menu.active {
                display: flex;
            }
            
            .nav-item {
                margin: 0;
                padding: 10px 20px;
            }
            
            .header-cta {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .hero h1 {
                font-size: 30px;
            }
            
            .hero h2 {
                font-size: 20px;
            }
            
            .hero-description {
                font-size: 16px;
            }
            
            .benefit-card {
                width: 100%;
                max-width: 300px;
            }
            
            .feature-item {
                width: 100%;
            }
            
            .footer-column {
                width: 100%;
                text-align: center;
            }
            
            .footer-column:first-child {
                width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .hero-feature {
                margin: 5px 10px;
            }
            
            .hero-feature-number {
                font-size: 28px;
            }
            
            .hero-feature-text {
                font-size: 12px;
            }
            
            .section-title {
                font-size: 26px;
            }
            
            .audience-number {
                font-size: 36px;
            }
            
            .cta-button {
                width: 100%;
                margin: 5px 0;
            }
            
            .cta-button.popular {
                transform: scale(1);
            }
        }
		/* Style dla sekcji PayPo */
.paypo-logo-container {
    margin: 30px 0;
    text-align: center;
}

.paypo-logo {
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

.paypo-example {
    margin-top: 20px;
    font-size: 18px;
}

.paypo-highlight {
    color: #ff3e79;
}
/* Style dla responsywnej sekcji porównania pakietów */

/* Desktop version */
.comparison-table-desktop {
    display: block;
}

/* Mobile version */
.comparison-mobile {
    display: none;
}

/* Tabs for mobile package selection */
.comparison-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 5px;
    overflow: hidden;
}

.comparison-tab {
    flex: 1;
    text-align: center;
    padding: 12px 5px;
    background-color: #f5f5f5;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.comparison-tab.active {
    background-color: #ff3e79;
    color: white;
}

/* Cards for mobile package display */
.comparison-cards {
    position: relative;
    margin-bottom: 30px;
}

.comparison-card {
    display: none;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
}

.comparison-card.active {
    display: block;
}

.comparison-card-header {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
    position: relative;
}

.optimum-header {
    background-color: #ff3e79;
    color: white;
}

.card-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: #ff3e79;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.comparison-card-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 5px;
}

.comparison-card-price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.comparison-card-price .price-original {
    display: block;
    font-size: 18px;
    font-weight: 400;
    text-decoration: line-through;
    color: #999;
    margin-bottom: 5px;
}

.comparison-card-price .price-discounted {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #ff3e79;
}

.comparison-card-duration {
    font-size: 14px;
    opacity: 0.8;
}

.optimum-header .comparison-card-duration {
    opacity: 1;
}

.comparison-card-content {
    padding: 20px;
}

.comparison-feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.feature-name {
    font-weight: 500;
}

.feature-value {
    text-align: right;
}

.comparison-card-footer {
    padding: 20px;
    text-align: center;
}

/* Media query for responsive design */
@media (max-width: 768px) {
    .comparison-table-desktop {
        display: none;
    }
    
    .comparison-mobile {
        display: block;
    }
}
   /* Purchase Notification */
    .purchase-notification {
        position: fixed;
        bottom: 20px;
        left: 20px;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        padding: 15px;
        z-index: 999;
        transform: translateY(100px);
        opacity: 0;
        transition: all 0.5s ease;
    }
    
    .purchase-notification.show {
        transform: translateY(0);
        opacity: 1;
    }
    
    .notification-content {
        display: flex;
        align-items: center;
    }
    
    .notification-icon {
        font-size: 24px;
        margin-right: 10px;
    }
    
    .notification-text {
        font-size: 14px;
    }
    
    .notification-close {
        margin-left: 15px;
        cursor: pointer;
        font-size: 18px;
        color: #999;
    }
    
    .notification-close:hover {
        color: #333;
    }
/* Course Content Center Section */
.course-content-center {
    text-align: center;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.course-content-center .course-content-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.course-content-center .course-content-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.course-content-center .feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    text-align: left;
}

.course-content-center .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
    width: 100%;
}

.course-content-center .feature-icon {
    color: #ff3e79;
    font-weight: bold;
    font-size: 18px;
}


/* Case Studies New Layout */
.case-studies-content {
    margin-top: 40px;
}

.case-studies-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.case-studies-practical {
    margin-bottom: 50px;
}

.case-studies-theoretical {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.theoretical-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.theoretical-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: #333;
    text-align: left;
}

.theoretical-icon {
    color: #ff3e79;
    font-weight: bold;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Responsive adjustments for case studies grid */
@media (max-width: 768px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .case-studies-theoretical {
        padding: 20px;
    }
}


/* Hero images for sections */
.section-image {
    text-align: center;
    margin-bottom: 30px;
}

.benefits-hero-image,
.frezarki-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.benefits-hero-image:hover,
.frezarki-hero-image:hover {
    transform: scale(1.02);
}

/* Desktop styles */
@media (min-width: 769px) {
    .benefits-hero-image {
        max-width: 600px;
        height: 400px;
        object-fit: cover;
    }
    
    .frezarki-hero-image {
        max-width: 500px;
        height: 350px;
        object-fit: cover;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .section-image {
        margin-bottom: 20px;
    }
    
    .benefits-hero-image,
    .frezarki-hero-image {
        max-width: 90%;
        height: auto;
        border-radius: 10px;
    }
    
    .benefits-hero-image {
        max-height: 250px;
        object-fit: cover;
    }
    
    .frezarki-hero-image {
        max-height: 200px;
        object-fit: cover;
    }
}
/* Value Breakdown Section */
.value-breakdown {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.value-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

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

.value-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.value-card.popular {
    border: 3px solid #ff3e79;
    transform: scale(1.05);
}

.value-card.popular:hover {
    transform: scale(1.08) translateY(-5px);
}

.value-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff3e79;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 10;
}

.value-card-header {
    background: linear-gradient(135deg, #ff3e79 0%, #ff6b9d 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.value-card-title {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.value-card-subtitle {
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 400;
}

.value-card-content {
    padding: 30px;
}

.value-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 30px;
    padding-right: 10px;
}

/* Scrollbar styling */
.value-items::-webkit-scrollbar {
    width: 6px;
}

.value-items::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.value-items::-webkit-scrollbar-thumb {
    background: #ff3e79;
    border-radius: 10px;
}

.value-items::-webkit-scrollbar-thumb:hover {
    background: #e6366d;
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 15px;
}

.value-item:last-child {
    border-bottom: none;
}

.value-item-name {
    flex: 1;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.4;
}

.value-item-price {
    font-weight: 700;
    color: #ff3e79;
    white-space: nowrap;
    font-size: 0.95rem;
}

.value-summary {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
}

.value-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.value-total-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.value-total-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: #666;
}

.value-price {
    margin-bottom: 15px;
}

.value-price-label {
    display: block;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 10px;
}

.value-price-amount {
    display: flex;
    align-items: center;
    gap: 15px;
}

.value-price-original {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 600;
}

.value-price-final {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff3e79;
}

.value-savings {
    text-align: center;
    background: linear-gradient(135deg, #ff3e79 0%, #ff6b9d 100%);
    color: white;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 15px;
}

.value-savings strong {
    font-weight: 800;
    font-size: 1.2rem;
}

.value-cta {
    margin-top: 20px;
    text-align: center;
}

.value-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ff3e79;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 62, 121, 0.3);
    animation: pulse 2.5s ease-in-out infinite;
}

.value-btn:hover {
    background-color: #e6356d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 62, 121, 0.4);
    animation: none;
}

.value-card.popular .value-btn {
    background-color: white;
    color: #ff3e79;
    border: 2px solid #ff3e79;
    animation: pulse-white 2.5s ease-in-out infinite;
}

.value-card.popular .value-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    animation: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .value-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .value-card.popular {
        transform: scale(1);
    }
    
    .value-card.popular:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .value-breakdown {
        padding: 60px 0;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .value-card {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .value-card.popular {
        transform: scale(1);
    }
    
    .value-card-title {
        font-size: 1.75rem;
    }
    
    .value-card-subtitle {
        font-size: 0.95rem;
    }
    
    .value-card-content {
        padding: 25px 20px;
    }
    
    .value-items {
        max-height: 350px;
    }
    
    .value-item-name {
        font-size: 0.85rem;
    }
    
    .value-item-price {
        font-size: 0.9rem;
    }
    
    .value-price-original {
        font-size: 1.2rem;
    }
    
    .value-price-final {
        font-size: 2rem;
    }
    
    .value-savings {
        font-size: 1rem;
    }
    
    .value-savings strong {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .value-card-header {
        padding: 25px 20px;
    }
    
    .value-card-title {
        font-size: 1.5rem;
    }
    
    .value-card-subtitle {
        font-size: 0.9rem;
    }
    
    .value-price-amount {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .value-price-original {
        font-size: 1.1rem;
    }
    
    .value-price-final {
        font-size: 1.8rem;
    }
}

