        /* Critical Hero Styles */
        .hero-section {
            padding: 150px 0;
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }
        
        .hero-text {
            flex: 1;
            padding-right: 20px;
        }
        
        .hero-image {
            flex: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }
        
        .hero-img {
            width: 100%;
            max-width: 500px;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .section-title {
            color: var(--primary);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
            display: block;
        }
        
        .section-title span {
            display: block;
            width: 50px;
            height: 3px;
            background: var(--primary);
            margin-top: 5px;
        }
        
        .hero-text h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #333;
            line-height: 1.2;
        }
        
        .hero-text p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            color: #555;
        }
        
        .btn-hero {
            padding: 14px 32px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Breadcrumb Stilleri */
        .about-breadcrumb {
            --bs-breadcrumb-divider: "›";
            background: transparent;
            padding: 0;
            margin-bottom: 1.5rem;
        }
        
        .about-breadcrumb .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
        }
        
        .about-breadcrumb .breadcrumb .breadcrumb-item a {
            color: #6c757d;
            text-decoration: none;
        }
        
        .about-breadcrumb .breadcrumb .breadcrumb-item.active {
            color: var(--primary);
        }
        
        /* Mobile First Styles */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }
            
            .hero-text {
                padding-right: 0;
                order: 1;
            }
            
            .hero-image {
                order: 2;
                margin-top: 30px;
            }
            
            .hero-img {
                max-width: 400px;
            }
            
            .hero-text h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                padding: 100px 0 60px;
            }
            
            .hero-img {
                max-width: 100%;
                border-radius: 20px;
            }
            
            .hero-text h1 {
                font-size: 1.8rem;
            }
            
            .hero-text p {
                font-size: 1rem;
            }
            
            .btn-hero {
                width: 100%;
                max-width: 280px;
                margin: 5px 0;
            }
        }