body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f9f6ff;
            color: #2c3e50;
            line-height: 1.6;
        }
        
        .header-section {
            background: linear-gradient(135deg, #4b0082, #6a0dad);
            color: white;
            padding: 2.5rem 0;
            margin-bottom: 3rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .header-section h1 {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .header-section p {
            font-weight: 300;
            opacity: 0.9;
            font-size: 1.1rem;
        }
        
        .main-container {
            max-width: 1400px;
            margin: 0 auto 4rem;
            padding: 0 25px;
        }
        
        .profile-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(106, 13, 173, 0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            border: none;
            position: relative;
            border-top: 4px solid #6a0dad;
        }
        
        .profile-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(106, 13, 173, 0.15);
        }
        
        .profile-image-container {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .profile-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .profile-card:hover .profile-image {
            transform: scale(1.05);
        }
        
       
        
        .profile-content {
            padding: 1.5rem;
        }
        
        .profile-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #6a0dad;
        }
        
        .profile-info {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: flex-start;
        }
        
        .profile-info i {
            width: 24px;
            text-align: center;
            margin-right: 10px;
            color: #9b59b6;
            font-size: 1rem;
            margin-top: 3px;
        }
        
        .info-label {
            font-size: 0.8rem;
            color: #2c3e50;
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 2px;
        }
        
        .info-value {
            font-size: 0.95rem;
            font-weight: 500;
            word-break: break-word;
        }
        
        .profile-email {
            color: #6a0dad;
            font-weight: 600;
        }
        
        .search-box {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(106, 13, 173, 0.1);
            margin-bottom: 2.5rem;
        }
        
        .search-box .form-control:focus {
            border-color: #9b59b6;
            box-shadow: 0 0 0 0.25rem rgba(155, 89, 182, 0.25);
        }
        
        .search-box .btn-primary {
            background-color: #6a0dad;
            border-color: #6a0dad;
        }
        
        .search-box .btn-primary:hover {
            background-color: #4b0082;
            border-color: #4b0082;
        }
        
        .footer-section {
            background: linear-gradient(135deg, #6a0dad, #4b0082);
            color: white;
            padding: 2rem 0;
            margin-top: 4rem;
        }
        
        @media (max-width: 768px) {
            .profile-image-container {
                height: 180px;
            }
        }