 /* 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;
            }
        }
        
        .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: block;
            flex-wrap: wrap;
            align-items: center;
            margin-top: 30px;
        }
        
        .partner-logo {
            height: 80px;
            margin-right: 20px;
            margin-bottom: 20px;
        }
        
        
        /* 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 {
            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-duration {
            color: #666;
            font-size: 14px;
        }
        
        .pricing-card.popular .pricing-card-duration {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .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;
        }
        
        .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: #ff3e79;
        }
        
        /* 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;
            }
            
            .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-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;
    }