
        /* E-Belediye Özel Stilleri */
        .e-belediye-header {
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            padding: 2rem 0;
            color: white;
            border-radius: 10px;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .e-belediye-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .e-belediye-subtitle {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }
        
        .service-category {
            margin-bottom: 2rem;
        }
        
        .category-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #3498db;
            display: inline-block;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            height: 100%;
            border: none;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.12);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: #3498db;
            margin-bottom: 1rem;
            padding-top: 1.5rem;
        }
        
        .service-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }
        
        .service-description {
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            padding: 0 1rem;
        }
        
        .service-link {
            display: block;
            padding: 0.8rem;
            background-color: #f8f9fa;
            color: #3498db;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.2s;
            text-align: center;
            border-top: 1px solid #eee;
            position: relative;
        }
        
        .service-link:hover {
            background-color: #3498db;
            color: white;
        }
        
        .modal-step {
            display: none;
        }
        
        .modal-step.active {
            display: block;
        }
        
        .step-title {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .service-option {
            display: block;
            padding: 1.2rem;
            margin-bottom: 1rem;
            background-color: #f8f9fa;
            border-radius: 8px;
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            transition: all 0.2s;
            text-align: center;
            border: 2px solid transparent;
            position: relative;
        }
        
        .service-option:hover {
            background-color: #3498db;
            color: white;
            border-color: #2980b9;
        }
        
        .back-button {
            color: #7f8c8d;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 0.9rem;
        }
        
        .back-button:hover {
            color: #2c3e50;
        }
        
        /* Tooltip stilleri */
        .tooltip-box {
            display: none;
            position: absolute;
            background-color: #333;
            color: white;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 0.85rem;
            z-index: 1000;
            max-width: 250px;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            margin-bottom: 8px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.16);
        }
        
        .tooltip-box:after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -8px;
            border-width: 8px;
            border-style: solid;
            border-color: #333 transparent transparent transparent;
        }
        
        .service-option:hover .tooltip-box,
        .service-link:hover .tooltip-box {
            display: block;
        }
        
        /* Select2 özelleştirmeleri */
        .e-belediye-search {
            margin-bottom: 2rem;
        }
        
        .select2-container--bootstrap-5 .select2-selection {
            min-height: 50px;
            border-radius: 8px;
            border: 2px solid #e9ecef;
        }
        
        .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
            line-height: 38px;
            padding-left: 15px;
            font-size: 1rem;
        }
        
        .select2-container--bootstrap-5 .select2-dropdown {
            border-color: #ced4da;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .select2-results__option--selectable {
            padding: 10px 15px;
            font-size: 1rem;
        }
        
        .select2-results__option--highlighted {
            background-color: #3498db;
            color: white;
        }
        
        /* Responsive düzenlemeler */
        @media (max-width: 768px) {
            .e-belediye-title {
                font-size: 2rem;
            }
            
            .e-belediye-subtitle {
                font-size: 1rem;
            }
            
            .service-card {
                margin-bottom: 1.5rem;
            }
            
            .tooltip-box {
                max-width: 200px;
                font-size: 0.8rem;
            }
        }