        /* Genel Başlık ve Açıklama */
        .testimonial-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            text-align: center;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: fadeInUp 1s ease-out forwards;
        }

        .testimonial-description {
            font-size: 1.1rem;
            color: #fff;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            font-weight: 300;
            animation: fadeInUp 1.2s ease-out forwards;
        }

        /* Yorum Kartı */
        .testimonial-item {
            background: #fff;
            border-radius: 15px;
            padding: 30px;
            margin: 20px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInCard 0.6s ease-out forwards;
        }

        /* Hover durumunda animasyon */
        .testimonial-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
        }

        /* Alıntı stil */
        .testimonial-quote {
            font-size: 1.1rem;
            color: #555;
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        .testimonial-item:hover .testimonial-quote {
            color: #1a2a6c;
            transform: translateX(10px);
        }

        /* İsim ve pozisyon */
        .testimonial-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1a2a6c;
            margin-top: 15px;
            transition: all 0.3s ease;
        }

        .testimonial-position {
            color: #888;
            font-size: 1rem;
            margin-top: 5px;
        }

        /* Yorum kartlarının animasyonu */
        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInCard {
            0% {
                opacity: 0;
                transform: translateY(50px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobil uyumlu */
        @media (max-width: 767px) {
            .testimonial-title {
                font-size: 2rem;
            }

            .testimonial-item {
                padding: 25px;
            }

            .testimonial-quote {
                font-size: 1rem;
            }

            .testimonial-name {
                font-size: 1.2rem;
            }

            .testimonial-position {
                font-size: 0.9rem;
            }
        }

        /* Genel Stil */
        .pricing-section {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            color: white;
            padding: 80px 0;
        }

        .card {
            position: relative;
            transition: all 0.4s ease-in-out;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .card:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .card-body {
            background: white padding: 30px;
            border-radius: 12px;
        }

        .fancy-title h3 {
            font-size: 36px;
            color: white;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
            text-align: center;
            margin-bottom: 20px;
        }

        .fancy-title p {
            font-size: 18px;
            color: #fdbb2d;
            text-align: center;
            margin-bottom: 50px;
        }

        /* Butonlar */
        .btn-primary {
            background-color: #fdbb2d;
            color: white;
            border-radius: 30px;
            padding: 15px 30px;
            font-size: 18px;
            transition: background-color 0.3s ease, transform 0.2s ease;
            text-align: center;
            text-decoration: none;
        }

        .btn-primary:hover {
            background-color: #ff9e00;
            transform: translateY(-5px);
        }

        /* Iconlist */
        .iconlist {
            list-style: none;
            padding: 0;
        }

        .iconlist li {
            margin-bottom: 12px;
            font-size: 16px;
            display: flex;
            align-items: center;
        }

        .iconlist i {
            margin-right: 15px;
            font-size: 20px;
            color: #fdbb2d;
        }

        .iconlist li span {
            font-size: 16px;
        }

        /* Hover Effect */
        .hover-effect:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }