.containers {
                background: white;
                padding: 24px;
                border-radius: 12px;
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
                width: 100%;
                max-width: 500px;
                box-sizing: border-box;
                margin: 20px auto;
            }
            
            input,
            textarea {
                width: 100%;
                padding: 10px;
                border-radius: 6px;
                border: none;
                margin-bottom: 16px;
                background: #1e1e1e;
                color: white;
                font-size: 14px;
                min-height: 60px;
            }
            
            .button {
                width: 100%;
                background: #007bff;
                color: white;
                padding: 12px;
                border: none;
                border-radius: 8px;
                font-size: 16px;
                cursor: pointer;
            }
            /* Modal */
            
            .modal {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0, 0, 0, 0.5);
                justify-content: center;
                align-items: center;
                z-index: 999;
            }
            
            .modal-content {
                background: white;
                padding: 30px 20px;
                border-radius: 12px;
                text-align: center;
                width: 90%;
                max-width: 500px;
                box-sizing: border-box;
                position: relative;
            }
            
            .progress-bar {
                height: 24px;
                width: 100%;
                background: #e5f8f0;
                border-radius: 24px;
                overflow: hidden;
                margin-bottom: 16px;
            }
            
            .progress-fill {
                height: 100%;
                width: 0%;
                background: repeating-linear-gradient( 45deg, #7b2ff7, #7b2ff7 10px, #6b1dd1 10px, #6b1dd1 20px);
                transition: width 0.1s linear;
            }
            
            #percentage {
                font-weight: bold;
                font-size: 16px;
            }
            
            #statusText {
                margin-top: 4px;
                color: #444;
            }
            
            .close-btn {
                position: absolute;
                top: 10px;
                right: 14px;
                font-size: 22px;
                color: #999;
                cursor: pointer;
                font-weight: bold;
            }
            
            .close-btn:hover {
                color: #333;
            }
            /* Notification */
            
            .notification {
                position: fixed;
                bottom: 30px;
                right: 30px;
                background-color: #f44336;
                color: white;
                padding: 16px 24px;
                border-radius: 8px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
                z-index: 1000;
                opacity: 0;
                transform: translateY(30px);
                animation: slideIn 0.4s forwards;
            }
            
            @keyframes slideIn {
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            @keyframes slideOut {
                to {
                    opacity: 0;
                    transform: translateY(30px);
                }
            }
            
            @media (max-width: 480px) {
                .containers {
                    padding: 16px;
                }
                .modal-content {
                    padding: 20px 16px;
                }
                .button {
                    font-size: 14px;
                    padding: 10px;
                }
                input,
                textarea {
                    font-size: 13px;
                }
                #statusText small {
                    font-size: 12px;
                }
            }
            /* MODERN PRICING TABLE STYLES */
            
             :root {
                --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                --primary-color: #764ba2;
                --secondary-color: #333;
                --text-color: #555;
                --bg-color: #f9fafb;
                --card-bg: #ffffff;
                --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
                --card-hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
            }
            
            .pricing-section-modern {
                padding: 100px 0;
                background-color: var(--bg-color);
                font-family: 'Poppins', sans-serif;
            }
            
            .pricing-title-modern {
                text-align: center;
                margin-bottom: 60px;
            }
            
            .pricing-title-modern .badge-modern {
                display: inline-block;
                padding: 8px 20px;
                background-image: var(--primary-gradient);
                color: white;
                border-radius: 50px;
                font-size: 14px;
                font-weight: 600;
                margin-bottom: 15px;
                letter-spacing: 0.5px;
            }
            
            .pricing-title-modern h2 {
                font-size: 38px;
                font-weight: 700;
                color: var(--secondary-color);
            }
            
            .pricing-card {
                background: var(--card-bg);
                border-radius: 20px;
                box-shadow: var(--card-shadow);
                padding: 40px;
                text-align: center;
                transition: all 0.3s ease;
                border: 2px solid transparent;
                display: flex;
                flex-direction: column;
                height: 100%;
            }
            
            .pricing-card:hover {
                transform: translateY(-10px);
                box-shadow: var(--card-hover-shadow);
            }
            
            .pricing-card.popular {
                border-image: var(--primary-gradient) 1;
                border-width: 2px;
                border-style: solid;
                transform: scale(1.05);
                position: relative;
                z-index: 10;
            }
            
            .popular-badge {
                position: absolute;
                top: -18px;
                left: 50%;
                transform: translateX(-50%);
                background-image: var(--primary-gradient);
                color: white;
                padding: 8px 25px;
                border-radius: 50px;
                font-size: 14px;
                font-weight: 700;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            }
            
            .card-header h3 {
                font-size: 24px;
                font-weight: 700;
                color: var(--secondary-color);
                margin-bottom: 10px;
            }
            
            .card-price {
                margin: 25px 0;
            }
            
            .card-price .old-price {
                font-size: 18px;
                color: #aaa;
                text-decoration: line-through;
                margin-right: 10px;
            }
            
            .card-price .new-price {
                font-size: 48px;
                font-weight: 700;
                color: var(--secondary-color);
            }
            
            .popular .card-price .new-price {
                color: var(--primary-color);
            }
            
            .card-price .currency {
                font-size: 36px;
                vertical-align: super;
                font-weight: 600;
            }
            
            .savings-badge {
                display: block;
                background-color: #e0fdef;
                color: #16a34a;
                padding: 6px 12px;
                border-radius: 6px;
                font-weight: 600;
                margin-top: 10px;
                font-size: 14px;
            }
            
            .feature-list {
                list-style: none;
                padding: 0;
                margin: 0;
                text-align: left;
                flex-grow: 1;
                /* Kartların aynı boyutta kalmasını sağlar */
            }
            
            .feature-list li {
                margin-bottom: 15px;
                display: flex;
                align-items: center;
                font-size: 16px;
                color: var(--text-color);
            }
            
            .feature-list li i {
                color: #16a34a;
                font-size: 20px;
                margin-right: 12px;
                width: 20px;
                /* İkonların hizalanması için */
            }
            
            .card-footer {
                margin-top: 30px;
            }
            
            .btn-modern {
                padding: 14px 20px;
                border-radius: 10px;
                font-weight: 600;
                font-size: 16px;
                width: 100%;
                margin-top: 10px;
                transition: all 0.3s ease;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 8px;
            }
            
            .btn-modern.primary {
                background-image: var(--primary-gradient);
                color: white;
                border: 2px solid transparent;
            }
            
            .btn-modern.primary:hover {
                color: white;
                box-shadow: 0 8px 15px rgba(102, 126, 234, 0.4);
                transform: translateY(-2px);
            }
            
            .btn-modern.secondary {
                background: transparent;
                color: var(--primary-color);
                border: 2px solid var(--primary-color);
            }
            
            .btn-modern.secondary:hover {
                background: var(--primary-color);
                color: white;
            }
            
            .guarantee-badge {
                display: flex;
                align-items: center;
                gap: 12px;
                background-color: #f0fdf4;
                /* Yumuşak yeşil bir arka plan */
                border: 1px solid #bbf7d0;
                /* Yeşil çerçeve */
                border-radius: 10px;
                padding: 12px 15px;
                margin-top: 20px;
                /* Butonlarla arasına boşluk koyar */
                font-family: 'Poppins', sans-serif;
            }
            
            .guarantee-badge .guarantee-icon {
                font-size: 28px;
                color: #22c55e;
                /* Güven veren yeşil ikon rengi */
            }
            
            .guarantee-badge .guarantee-text {
                text-align: left;
            }
            
            .guarantee-badge .guarantee-text strong {
                display: block;
                font-size: 15px;
                font-weight: 600;
                color: #166534;
                /* Koyu yeşil metin */
                line-height: 1.3;
            }
            
            .guarantee-badge .guarantee-text p {
                margin: 2px 0 0 0;
                font-size: 13px;
                color: #15803d;
                /* Orta tonda yeşil metin */
                line-height: 1.3;
            }
            /* ================================================== */
            /* Geri Sayım Sayacı Stilleri                 */
            /* ================================================== */
            
            .countdown-wrapper {
                background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
                border-radius: 16px;
                padding: 25px 30px;
                text-align: center;
                margin-bottom: 60px;
                /* Fiyat kartlarıyla arasına boşluk koyar */
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            }
            
            .countdown-title {
                color: #ffffff;
                font-family: 'Poppins', sans-serif;
                font-weight: 600;
                font-size: 20px;
                margin-bottom: 20px;
                letter-spacing: 0.5px;
            }
            
            .countdown-title i {
                color: #ff9800;
                /* Ateş ikonu rengi */
                margin-right: 10px;
            }
            
            .countdown-timer {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 15px;
            }
            
            .countdown-item {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                background: rgba(255, 255, 255, 0.1);
                border-radius: 10px;
                padding: 15px;
                min-width: 90px;
            }
            
            .countdown-number {
                font-family: 'Poppins', sans-serif;
                font-weight: 700;
                font-size: 42px;
                color: #ffffff;
                line-height: 1;
            }
            
            .countdown-label {
                font-family: 'Poppins', sans-serif;
                font-weight: 500;
                font-size: 14px;
                color: #cccccc;
                margin-top: 5px;
                text-transform: uppercase;
            }
            
            .countdown-separator {
                font-size: 36px;
                font-weight: 700;
                color: #ffffff;
                padding-bottom: 25px;
                /* Label'larla hizalamak için */
            }
            /* Sayaç bittiğinde gösterilecek mesaj */
            
            #countdown-timer.ended {
                font-size: 28px;
                font-weight: 700;
                color: #ff5252;
            }
            /* Mobil cihazlar için */
            
            @media (max-width: 768px) {
                .countdown-title {
                    font-size: 16px;
                }
                .countdown-item {
                    min-width: 70px;
                    padding: 10px;
                }
                .countdown-number {
                    font-size: 32px;
                }
                .countdown-label {
                    font-size: 12px;
                }
                .countdown-separator {
                    font-size: 28px;
                }
            }
            /* ================================================== */
            /* HERO BÖLÜMÜ YENİ STİLLERİ (V2)             */
            /* ================================================== */
            /* Ana görselin ve rozetlerin kapsayıcısı */
            /* ================================================== */
            /* HERO BÖLÜMÜ YENİ STİLLERİ (V2)             */
            /* ================================================== */
            /* Ana görselin ve rozetlerin kapsayıcısı */
            
            .hero-image-container-v2 {
                position: relative;
                display: flex;
                justify-content: center;
                align-items: center;
                margin-top: 40px;
                /* Yavaşça nefes alıp verme animasyonunu kapsayıcıya taşıdık */
                animation: breathing-animation 8s ease-in-out infinite;
            }
            /* Ana "Öncesi & Sonrası" görseli */
            
            .hero-main-image {
                width: 100%;
                max-width: 550px;
                /* Görselin çok büyümesini engeller */
                border-radius: 20px;
                box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
                /* Animasyon buradan kaldırıldı, yerine geçiş eklendi */
                transition: opacity 0.5s ease-in-out;
            }
            /* JavaScript ile görsel değiştirilirken yumuşak geçiş için */
            
            .hero-main-image.fade-out {
                opacity: 0;
            }
            /* Nefes alma animasyonu */
            
            @keyframes breathing-animation {
                0% {
                    transform: scale(1);
                }
                50% {
                    transform: scale(1.03);
                }
                100% {
                    transform: scale(1);
                }
            }
            /* Her bir rozetin stili */
            
            .hero-badge {
                position: absolute;
                display: flex;
                align-items: center;
                gap: 12px;
                padding: 12px 18px;
                background: rgba(255, 255, 255, 0.7);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.2);
                border-radius: 12px;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            }
            
            .hero-badge .badge-icon {
                width: 45px;
                height: 45px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .hero-badge .badge-icon img {
                height: 24px;
                width: auto;
            }
            
            .hero-badge .badge-icon i {
                font-size: 22px;
            }
            
            .hero-badge .badge-content {
                text-align: left;
                white-space: nowrap;
            }
            
            .hero-badge .badge-content .counter,
            .hero-badge .badge-content span {
                font-size: 22px;
                font-weight: 700;
                color: #1a202c;
            }
            
            .hero-badge .badge-content p {
                margin: 0;
                font-size: 14px;
                color: #4a5568;
                line-height: 1.2;
            }
            /* Mobil cihazlar için rozetleri gizleyerek temiz bir görünüm sağla */
            
            @media (max-width: 991px) {
                .hero-badge {
                    display: none;
                }
                .hero-image-container-v2 {
                    margin-top: 20px;
                }
            }
            /* Ana görsel ve rozetlerin kapsayıcısı */
            
            .business_consulting_hero_image {
                position: relative;
                /* Bu, rozetlerin buna göre konumlanması için KRİTİK öneme sahip */
                margin-top: 40px;
                perspective: 1000px;
                /* 3D efekt için */
            }
            /* Ana görsel */
            
            .hero_image {
                border-radius: 20px;
                box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
                transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }
            /* Görselin üzerine gelince 3D efekt */
            
            .hero_image:hover {
                transform: scale(1.05) rotateY(-5deg) rotateX(3deg);
            }
            /* Her bir rozetin yeni stili */
            
            .funfact_block.capsule_layout {
                position: absolute;
                padding: 12px 18px;
                /* Modern "Buzlu Cam" efekti */
                background: rgba(255, 255, 255, 0.6);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                border: 1px solid rgba(255, 255, 255, 0.2);
                border-radius: 16px;
                box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
            }
            /* Rozetlerin konumlarını inline style yerine buradan yönetiyoruz */
            
            .funfact_block:nth-of-type(1) {
                top: 20%;
                left: -60px;
            }
            
            .funfact_block:nth-of-type(2) {
                bottom: 15%;
                right: -70px;
            }
            
            .funfact_block:nth-of-type(3) {
                top: 5%;
                right: -40px;
            }
            /* Mobil cihazlar için rozetleri gizle */
            
            @media (max-width: 991px) {
                .funfact_block.capsule_layout {
                    display: none;
                }
            }