        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            overflow-x: hidden;
        }
        
        .hero-section {
            height: 100vh;
            max-height: 1000px;
            min-height: 650px;
        }
        
        @media (max-width: 768px) {
            .hero-section {
                height: 100vh;
                max-height: none;
                min-height: 650px;
            }
            
            .hero-content {
                padding-top: 30px;
            }
            
            .hero-title {
                font-size: 2.2rem !important;
                line-height: 1.2 !important;
            }
            
            .hero-subtitle {
                font-size: 1.1rem !important;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 12px !important;
            }
            
            .slider-nav {
                display: flex !important;
                padding: 10px;
            }
        }
        
        @media (max-width: 480px) {
            .hero-section {
                min-height: 600px;
            }
            
            .hero-title {
                font-size: 1.8rem !important;
            }
            
            .stats-grid {
                grid-template-columns: 1fr !important;
            }
            
            .button-group {
                flex-direction: column;
                width: 100%;
            }
            
            .button-group a {
                width: 100%;
                text-align: center;
            }
        }
        
        .hero-slide {
            transition: opacity 0.8s ease-in-out;
        }
        
        .slider-indicator {
            transition: all 0.3s ease;
        }
        
        .line-clamp-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .animate-fadeBump {
            animation: fadeBump 0.6s;
        }
        
        @keyframes fadeBump {
            0% { opacity: 1; transform: scale(0.97);}
            35% { opacity: 0; transform: scale(1.04);}
            65% { opacity: 0; transform: scale(1.04);}
            100% { opacity: 1; transform: scale(1);}
        }
		
	/* Özel placeholder stili */
.custom-placeholder {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    text-align: center;
    min-height: 225px; /* Minimum yükseklik */
}

.custom-placeholder .text-center {
    padding: 1.5rem;
}

.custom-placeholder .text-4xl {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.custom-placeholder .text-lg {
    font-size: 1.125rem;
    font-weight: 700;
}

.custom-placeholder .text-sm {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Aspect ratio container için düzenleme */
.aspect-video {
    position: relative;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.aspect-video > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Resim için stiller */
.aspect-video img {
    object-fit: cover;
    transition: transform 0.3s ease;
}

.aspect-video img:hover {
    transform: scale(1.05);
}