   

        .main-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 60px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .intro-section {
            text-align: center;
            margin-bottom: 50px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        .intro-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--dark);
            background: rgba(255, 255, 255, 0.95);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            border-left: 5px solid var(--primary);
        }

        .services-grid {
            display: flex;
            flex-direction: column;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-item {
            display: flex;
            flex-direction: column;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-left: 5px solid var(--primary);
            overflow: hidden;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .service-card {
            flex: 1;
            padding: 30px;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .service-item:nth-child(even) {
            border-left: none;
            border-right: 5px solid var(--primary);
        }

        /* Horizontal kart stilleri */
        .service-item-horizontal {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-left: 5px solid var(--primary);
            overflow: hidden;
            min-height: 300px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-item-horizontal:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .service-item-horizontal.service-item-reverse {
            flex-direction: row-reverse;
            border-left: none;
            border-right: 5px solid var(--primary);
        }

        .service-content {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-item-horizontal .service-icon {
            width: 60px;
            height: 60px;
            background: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .service-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .service-item-horizontal .service-icon {
            width: 60px;
            height: 60px;
            background: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            margin-bottom: 0;
            flex-shrink: 0;
        }

        .service-item-horizontal .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 0;
        }

        .service-item-horizontal .service-icon svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        .service-item-horizontal .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .service-item-horizontal .service-description {
            font-size: 1rem;
            line-height: 1.6;
            color: #666;
        }

        .service-item-horizontal .service-image {
            flex: 1;
            height: 300px;
            position: relative;
            overflow: hidden;
        }

        .service-item-horizontal .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media (max-width: 768px) {
            .service-item-horizontal {
                flex-direction: column;
                min-height: auto;
            }

            .service-item-horizontal.service-item-reverse {
                flex-direction: column;
            }

            .service-content {
                padding: 30px 20px;
                order: 1;
            }

            .service-item-horizontal .service-image {
                height: 200px;
                order: 2;
            }
        }

        .service-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--warning), var(--primary));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
            color: white;
            box-shadow: 0 4px 15px rgba(236, 100, 43, 0.3);
        }

        .service-icon svg {
            width: 28px;
            height: 28px;
            fill: white;
        }

        .service-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .service-description {
            color: var(--dark);
            line-height: 1.6;
            font-size: 1.05rem;
            flex: 1;
            display: flex;
            align-items: flex-start;
        }

        .service-image {
            width: 100%;
            height: 200px;
            position: relative;
            margin-top: 20px;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .image-overlay {
            position: absolute;
            top: -10px;
            right: -10px;
            bottom: 10px;
            left: 10px;
            background: linear-gradient(45deg, var(--primary), var(--warning));
            border-radius: 15px;
            z-index: -1;
        }

        /* Tablet */
        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .service-item {
                max-width: 600px;
                margin: 0 auto;
            }
        }

        /* Mobil */
        @media (max-width: 768px) {
            .main-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }

            .intro-text {
                font-size: 1rem;
                padding: 20px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 15px;
            }

            .service-item {
                border-radius: 15px;
                border-left: 5px solid var(--primary) !important;
                border-right: none !important;
            }

            .service-card {
                padding: 20px;
            }

            .service-image {
                height: 180px;
            }

            .service-image img {
                border-radius: 8px;
            }
        }

        /* Çok küçük ekranlar */
        @media (max-width: 480px) {
            .services-grid {
                padding: 0 10px;
            }
            
            .service-card {
                padding: 15px;
            }
            
            .service-image {
                height: 150px;
            }
        }